Interface CfnStackSet.StackInstancesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStackSet.StackInstancesProperty.Jsii$Proxy
- Enclosing class:
CfnStackSet
@Stability(Stable)
public static interface CfnStackSet.StackInstancesProperty
extends software.amazon.jsii.JsiiSerializable
Stack instances in some specific accounts and Regions.
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.*; StackInstancesProperty stackInstancesProperty = 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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnStackSet.StackInstancesProperty
static final class
An implementation forCfnStackSet.StackInstancesProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The AWSOrganizationalUnitIds
orAccounts
for which to create stack instances in the specified Regions.default Object
A list of stack set parameters whose values you want to override in the selected stack instances.The names of one or more Regions where you want to create stack instances using the specified AWS accounts .Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeploymentTargets
The AWSOrganizationalUnitIds
orAccounts
for which to create stack instances in the specified Regions.- See Also:
-
getRegions
The names of one or more Regions where you want to create stack instances using the specified AWS accounts .- See Also:
-
getParameterOverrides
A list of stack set parameters whose values you want to override in the selected stack instances.- See Also:
-
builder
-