Interface DefaultBootstrapRolesOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DefaultBootstrapRolesOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:06.462Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDefaultBootstrapRolesOptionsstatic final classAn implementation forDefaultBootstrapRolesOptions -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBootstrapRegion
(experimental) The region where the default bootstrap roles have been created.By default, the region in which the stack is deployed is used.
Default: - the stack's current region
-
builder
-