interface CustomResourcesOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AppStagingSynthesizer.Alpha.CustomResourcesOptions |
![]() | software.amazon.awscdk.app.staging.synthesizer.alpha.CustomResourcesOptions |
![]() | aws_cdk.app_staging_synthesizer_alpha.CustomResourcesOptions |
![]() | @aws-cdk/app-staging-synthesizer-alpha ยป CustomResourcesOptions |
Properties for customResources static method.
Example
const resourceApp = new App();
const resources = new CustomStagingStack(resourceApp, 'CustomStagingStack', {});
const app = new App({
defaultStackSynthesizer: AppStagingSynthesizer.customResources({
resources,
}),
});
Properties
Name | Type | Description |
---|---|---|
resources | IStaging | Use these exact staging resources for every stack that this synthesizer is used for. |
bootstrap | string | Qualifier to disambiguate multiple bootstrapped environments in the same account. |
deployment | Deployment | What roles to use to deploy applications. |
resources
Type:
IStaging
Use these exact staging resources for every stack that this synthesizer is used for.
bootstrapQualifier?
Type:
string
(optional, default: Value of context key '@aws-cdk/core:bootstrapQualifier' if set, otherwise DEFAULT_QUALIFIER
)
Qualifier to disambiguate multiple bootstrapped environments in the same account.
This qualifier is only used to reference bootstrapped resources. It will not
be used in the creation of app-specific staging resources: appId
is used for that
instead.
deploymentIdentities?
Type:
Deployment
(optional, default: The standard bootstrapped CDK roles)
What roles to use to deploy applications.
These are the roles that have permissions to interact with CloudFormation on your behalf. By default these are the standard bootstrapped CDK roles, but you can customize them or turn them off and use the CLI credentials to deploy.