Class CfnStackSet
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.cloudformation.CfnStackSet
- All Implemented Interfaces:
IEnvironmentAware,IInspectable,ITaggable,IStackSetRef,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:39:59.965Z")
@Stability(Stable)
public class CfnStackSet
extends CfnResource
implements IInspectable, IStackSetRef, ITaggable
The
AWS::CloudFormation::StackSet resource contains information about a StackSet.
With StackSets, you can provision stacks across AWS accounts and Regions from a single CloudFormation template. Each stack is based on the same CloudFormation template, but you can customize individual stacks using parameters.
Run deployments to nested StackSets from the parent stack, not directly through the StackSet API.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.cloudformation.*;
Object managedExecution;
CfnStackSet cfnStackSet = CfnStackSet.Builder.create(this, "MyCfnStackSet")
.permissionModel("permissionModel")
.stackSetName("stackSetName")
// the properties below are optional
.administrationRoleArn("administrationRoleArn")
.autoDeployment(AutoDeploymentProperty.builder()
.enabled(false)
.retainStacksOnAccountRemoval(false)
.build())
.callAs("callAs")
.capabilities(List.of("capabilities"))
.description("description")
.executionRoleName("executionRoleName")
.managedExecution(managedExecution)
.operationPreferences(OperationPreferencesProperty.builder()
.concurrencyMode("concurrencyMode")
.failureToleranceCount(123)
.failureTolerancePercentage(123)
.maxConcurrentCount(123)
.maxConcurrentPercentage(123)
.regionConcurrencyType("regionConcurrencyType")
.regionOrder(List.of("regionOrder"))
.build())
.parameters(List.of(ParameterProperty.builder()
.parameterKey("parameterKey")
.parameterValue("parameterValue")
.build()))
.stackInstancesGroup(List.of(StackInstancesProperty.builder()
.deploymentTargets(DeploymentTargetsProperty.builder()
.accountFilterType("accountFilterType")
.accounts(List.of("accounts"))
.accountsUrl("accountsUrl")
.organizationalUnitIds(List.of("organizationalUnitIds"))
.build())
.regions(List.of("regions"))
// the properties below are optional
.parameterOverrides(List.of(ParameterProperty.builder()
.parameterKey("parameterKey")
.parameterValue("parameterValue")
.build()))
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.templateBody("templateBody")
.templateUrl("templateUrl")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceDescribes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU).static final classA fluent builder forCfnStackSet.static interfaceThe AWS Organizations accounts or AWS accounts to deploy stacks to in the specified Regions.static interfaceDescribes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations.static interfaceThe user-specified preferences for how CloudFormation performs a StackSet operation.static interfaceThe Parameter data type.static interfaceStack instances in some specific accounts and Regions.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.services.cloudformation.IStackSetRef
IStackSetRef.Jsii$Default, IStackSetRef.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnStackSet(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnStackSet(software.amazon.jsii.JsiiObjectRef objRef) CfnStackSet(software.constructs.Construct scope, String id, CfnStackSetProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe Amazon Resource Number (ARN) of the IAM role to use to create this StackSet.Returns the unique identifier of the resource.Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU).Specifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account.The capabilities that are allowed in the StackSet.A description of the StackSet.The name of the IAM execution role to use to create the StackSet.Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations.The user-specified preferences for how CloudFormation performs a StackSet operation.The input parameters for the StackSet template.Describes how the IAM roles required for StackSet operations are created.A group of stack instances with parameters in some specific accounts and Regions.The name to associate with the StackSet.A reference to a StackSet resource.getTags()Tag Manager which manages the tags for this resource.Key-value pairs to associate with this stack.The structure that contains the template body, with a minimum length of 1 byte and a maximum length of 51,200 bytes.The URL of a file that contains the template body.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidsetAdministrationRoleArn(String value) The Amazon Resource Number (ARN) of the IAM role to use to create this StackSet.voidsetAutoDeployment(IResolvable value) Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU).voidDescribes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU).voidSpecifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account.voidsetCapabilities(List<String> value) The capabilities that are allowed in the StackSet.voidsetDescription(String value) A description of the StackSet.voidsetExecutionRoleName(String value) The name of the IAM execution role to use to create the StackSet.voidsetManagedExecution(Object value) Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations.voidThe user-specified preferences for how CloudFormation performs a StackSet operation.voidThe user-specified preferences for how CloudFormation performs a StackSet operation.voidsetParameters(List<Object> value) The input parameters for the StackSet template.voidsetParameters(IResolvable value) The input parameters for the StackSet template.voidsetPermissionModel(String value) Describes how the IAM roles required for StackSet operations are created.voidsetStackInstancesGroup(List<Object> value) A group of stack instances with parameters in some specific accounts and Regions.voidA group of stack instances with parameters in some specific accounts and Regions.voidsetStackSetName(String value) The name to associate with the StackSet.voidsetTagsRaw(List<CfnTag> value) Key-value pairs to associate with this stack.voidsetTemplateBody(String value) The structure that contains the template body, with a minimum length of 1 byte and a maximum length of 51,200 bytes.voidsetTemplateUrl(String value) The URL of a file that contains the template body.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnStackSet
protected CfnStackSet(software.amazon.jsii.JsiiObjectRef objRef) -
CfnStackSet
protected CfnStackSet(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnStackSet
@Stability(Stable) public CfnStackSet(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnStackSetProps props) - Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrStackSetId
Returns the unique identifier of the resource. -
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getStackSetRef
A reference to a StackSet resource.- Specified by:
getStackSetRefin interfaceIStackSetRef
-
getTags
Tag Manager which manages the tags for this resource. -
getPermissionModel
Describes how the IAM roles required for StackSet operations are created. -
setPermissionModel
Describes how the IAM roles required for StackSet operations are created. -
getStackSetName
The name to associate with the StackSet. -
setStackSetName
The name to associate with the StackSet. -
getAdministrationRoleArn
The Amazon Resource Number (ARN) of the IAM role to use to create this StackSet. -
setAdministrationRoleArn
The Amazon Resource Number (ARN) of the IAM role to use to create this StackSet. -
getAutoDeployment
Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU).Returns union: either
IResolvableorCfnStackSet.AutoDeploymentProperty -
setAutoDeployment
Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU). -
setAutoDeployment
@Stability(Stable) public void setAutoDeployment(@Nullable CfnStackSet.AutoDeploymentProperty value) Describes whether StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU). -
getCallAs
Specifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account. -
setCallAs
Specifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account. -
getCapabilities
The capabilities that are allowed in the StackSet. -
setCapabilities
The capabilities that are allowed in the StackSet. -
getDescription
A description of the StackSet. -
setDescription
A description of the StackSet. -
getExecutionRoleName
The name of the IAM execution role to use to create the StackSet. -
setExecutionRoleName
The name of the IAM execution role to use to create the StackSet. -
getManagedExecution
Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations. -
setManagedExecution
Describes whether StackSets performs non-conflicting operations concurrently and queues conflicting operations. -
getOperationPreferences
The user-specified preferences for how CloudFormation performs a StackSet operation.Returns union: either
IResolvableorCfnStackSet.OperationPreferencesProperty -
setOperationPreferences
The user-specified preferences for how CloudFormation performs a StackSet operation. -
setOperationPreferences
@Stability(Stable) public void setOperationPreferences(@Nullable CfnStackSet.OperationPreferencesProperty value) The user-specified preferences for how CloudFormation performs a StackSet operation. -
getParameters
The input parameters for the StackSet template.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnStackSet.ParameterProperty> -
setParameters
The input parameters for the StackSet template. -
setParameters
The input parameters for the StackSet template. -
getStackInstancesGroup
A group of stack instances with parameters in some specific accounts and Regions.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnStackSet.StackInstancesProperty> -
setStackInstancesGroup
A group of stack instances with parameters in some specific accounts and Regions. -
setStackInstancesGroup
A group of stack instances with parameters in some specific accounts and Regions. -
getTagsRaw
Key-value pairs to associate with this stack. -
setTagsRaw
Key-value pairs to associate with this stack. -
getTemplateBody
The structure that contains the template body, with a minimum length of 1 byte and a maximum length of 51,200 bytes. -
setTemplateBody
The structure that contains the template body, with a minimum length of 1 byte and a maximum length of 51,200 bytes. -
getTemplateUrl
The URL of a file that contains the template body. -
setTemplateUrl
The URL of a file that contains the template body.
-