@aws-cdk_app-staging-synthesizer-alpha.DefaultBootstrapRolesOptions

interface DefaultBootstrapRolesOptions 🔹

LanguageType name
.NETAmazon.CDK.AppStagingSynthesizer.Alpha.DefaultBootstrapRolesOptions
Javasoftware.amazon.awscdk.app.staging.synthesizer.alpha.DefaultBootstrapRolesOptions
Pythonaws_cdk.app_staging_synthesizer_alpha.DefaultBootstrapRolesOptions
TypeScript (source)@aws-cdk/app-staging-synthesizer-alpha » DefaultBootstrapRolesOptions

Options for DeploymentIdentities.defaultBootstrappedRoles.

Example

const app = new App({
  defaultStackSynthesizer: AppStagingSynthesizer.defaultResources({
    appId: 'my-app-id',

    // The following line is optional. By default it is assumed you have bootstrapped in the same
    // region(s) as the stack(s) you are deploying.
    deploymentIdentities: DeploymentIdentities.defaultBootstrapRoles({ bootstrapRegion: 'us-east-1' }),
  }),
});

Properties

NameTypeDescription
bootstrapRegion?🔹stringThe region where the default bootstrap roles have been created.

bootstrapRegion?🔹

Type: string (optional, default: the stack's current region)

The region where the default bootstrap roles have been created.

By default, the region in which the stack is deployed is used.