Interface DefaultBootstrapRolesOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DefaultBootstrapRolesOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.522Z") @Stability(Experimental) public interface DefaultBootstrapRolesOptions extends software.amazon.jsii.JsiiSerializable
(experimental) Options for DeploymentIdentities.defaultBootstrappedRoles.

Example:

 import software.amazon.awscdk.services.s3.BucketEncryption;
 App app = App.Builder.create()
         .defaultStackSynthesizer(AppStagingSynthesizer.defaultResources(DefaultResourcesOptions.builder()
                 .appId("my-app-id")
                 .stagingBucketEncryption(BucketEncryption.S3_MANAGED)
                 // 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(DefaultBootstrapRolesOptions.builder().bootstrapRegion("us-east-1").build()))
                 .build()))
         .build();