icy-controller-6092
08/22/2022, 7:00 PM{ provider }
as the third arg)great-sunset-355
08/23/2022, 8:17 AMResourceOptions.provider
passed to Component Resource. The interface is more explicit about what provider/s should be passed in.icy-controller-6092
08/24/2022, 5:07 PMcreateResource
function (contains region + name suffix) and use that when creating the stack eg.
const builder = new Builder({
provider: new AWS.Provider('X', { region: 'X' }),
nameSuffix: 'X',
})
builder.createResource(aws.lambda.Function, { ... } )
great-sunset-355
08/25/2022, 11:57 AM