Class AwsCloudFormationStackProperties.Builder
- java.lang.Object
-
- software.amazon.awscdk.cloudassembly.schema.AwsCloudFormationStackProperties.Builder
-
- All Implemented Interfaces:
software.amazon.jsii.Builder<AwsCloudFormationStackProperties>
- Enclosing interface:
- AwsCloudFormationStackProperties
@Stability(Stable) public static final class AwsCloudFormationStackProperties.Builder extends Object implements software.amazon.jsii.Builder<AwsCloudFormationStackProperties>
A builder forAwsCloudFormationStackProperties
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
-
-
-
Method Detail
-
templateFile
@Stability(Stable) public AwsCloudFormationStackProperties.Builder templateFile(String templateFile)
Sets the value ofAwsCloudFormationStackProperties.getTemplateFile()- Parameters:
templateFile- A file relative to the assembly root which contains the CloudFormation template for this stack. This parameter is required.- Returns:
this
-
assumeRoleAdditionalOptions
@Stability(Stable) public AwsCloudFormationStackProperties.Builder assumeRoleAdditionalOptions(Map<String,? extends Object> assumeRoleAdditionalOptions)
Sets the value ofAwsCloudFormationStackProperties.getAssumeRoleAdditionalOptions()- Parameters:
assumeRoleAdditionalOptions- Additional options to pass to STS when assuming the role.RoleArnshould not be used. Use the dedicatedassumeRoleArnproperty instead.ExternalIdshould not be used. Use the dedicatedassumeRoleExternalIdinstead.
- Returns:
this
-
assumeRoleArn
@Stability(Stable) public AwsCloudFormationStackProperties.Builder assumeRoleArn(String assumeRoleArn)
Sets the value ofAwsCloudFormationStackProperties.getAssumeRoleArn()- Parameters:
assumeRoleArn- The role that needs to be assumed to deploy the stack.- Returns:
this
-
assumeRoleExternalId
@Stability(Stable) public AwsCloudFormationStackProperties.Builder assumeRoleExternalId(String assumeRoleExternalId)
Sets the value ofAwsCloudFormationStackProperties.getAssumeRoleExternalId()- Parameters:
assumeRoleExternalId- External ID to use when assuming role for cloudformation deployments.- Returns:
this
-
bootstrapStackVersionSsmParameter
@Stability(Stable) public AwsCloudFormationStackProperties.Builder bootstrapStackVersionSsmParameter(String bootstrapStackVersionSsmParameter)
Sets the value ofAwsCloudFormationStackProperties.getBootstrapStackVersionSsmParameter()- Parameters:
bootstrapStackVersionSsmParameter- SSM parameter where the bootstrap stack version number can be found. Only used ifrequiresBootstrapStackVersionis set.- If this value is not set, the bootstrap stack name must be known at deployment time so the stack version can be looked up from the stack outputs.
- If this value is set, the bootstrap stack can have any name because we won't need to look it up.
- Returns:
this
-
cloudFormationExecutionRoleArn
@Stability(Stable) public AwsCloudFormationStackProperties.Builder cloudFormationExecutionRoleArn(String cloudFormationExecutionRoleArn)
Sets the value ofAwsCloudFormationStackProperties.getCloudFormationExecutionRoleArn()- Parameters:
cloudFormationExecutionRoleArn- The role that is passed to CloudFormation to execute the change set.- Returns:
this
-
lookupRole
@Stability(Stable) public AwsCloudFormationStackProperties.Builder lookupRole(BootstrapRole lookupRole)
Sets the value ofAwsCloudFormationStackProperties.getLookupRole()- Parameters:
lookupRole- The role to use to look up values from the target AWS account.- Returns:
this
-
notificationArns
@Stability(Stable) public AwsCloudFormationStackProperties.Builder notificationArns(List<String> notificationArns)
Sets the value ofAwsCloudFormationStackProperties.getNotificationArns()- Parameters:
notificationArns- SNS Notification ARNs that should receive CloudFormation Stack Events.- Returns:
this
-
parameters
@Stability(Stable) public AwsCloudFormationStackProperties.Builder parameters(Map<String,String> parameters)
Sets the value ofAwsCloudFormationStackProperties.getParameters()- Parameters:
parameters- Values for CloudFormation stack parameters that should be passed when the stack is deployed.- Returns:
this
-
requiresBootstrapStackVersion
@Stability(Stable) public AwsCloudFormationStackProperties.Builder requiresBootstrapStackVersion(Number requiresBootstrapStackVersion)
Sets the value ofAwsCloudFormationStackProperties.getRequiresBootstrapStackVersion()- Parameters:
requiresBootstrapStackVersion- Version of bootstrap stack required to deploy this stack.- Returns:
this
-
stackName
@Stability(Stable) public AwsCloudFormationStackProperties.Builder stackName(String stackName)
Sets the value ofAwsCloudFormationStackProperties.getStackName()- Parameters:
stackName- The name to use for the CloudFormation stack.- Returns:
this
-
stackTemplateAssetObjectUrl
@Stability(Stable) public AwsCloudFormationStackProperties.Builder stackTemplateAssetObjectUrl(String stackTemplateAssetObjectUrl)
Sets the value ofAwsCloudFormationStackProperties.getStackTemplateAssetObjectUrl()- Parameters:
stackTemplateAssetObjectUrl- If the stack template has already been included in the asset manifest, its asset URL.- Returns:
this
-
tags
@Stability(Stable) public AwsCloudFormationStackProperties.Builder tags(Map<String,String> tags)
Sets the value ofAwsCloudFormationStackProperties.getTags()- Parameters:
tags- Values for CloudFormation stack tags that should be passed when the stack is deployed.- Returns:
this
-
terminationProtection
@Stability(Stable) public AwsCloudFormationStackProperties.Builder terminationProtection(Boolean terminationProtection)
Sets the value ofAwsCloudFormationStackProperties.getTerminationProtection()- Parameters:
terminationProtection- Whether to enable termination protection for this stack.- Returns:
this
-
validateOnSynth
@Stability(Stable) public AwsCloudFormationStackProperties.Builder validateOnSynth(Boolean validateOnSynth)
Sets the value ofAwsCloudFormationStackProperties.getValidateOnSynth()- Parameters:
validateOnSynth- Whether this stack should be validated by the CLI after synthesis.- Returns:
this
-
build
@Stability(Stable) public AwsCloudFormationStackProperties build()
Builds the configured instance.- Specified by:
buildin interfacesoftware.amazon.jsii.Builder<AwsCloudFormationStackProperties>- Returns:
- a new instance of
AwsCloudFormationStackProperties - Throws:
NullPointerException- if any required attribute was not provided
-
-