Interface CfnStackSetPropsMixin.StackInstancesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStackSetPropsMixin.StackInstancesProperty.Jsii$Proxy
- Enclosing class:
CfnStackSetPropsMixin
@Stability(Stable)
public static interface CfnStackSetPropsMixin.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.cfnpropertymixins.services.cloudformation.*;
StackInstancesProperty stackInstancesProperty = StackInstancesProperty.builder()
.deploymentTargets(DeploymentTargetsProperty.builder()
.accountFilterType("accountFilterType")
.accounts(List.of("accounts"))
.accountsUrl("accountsUrl")
.organizationalUnitIds(List.of("organizationalUnitIds"))
.build())
.parameterOverrides(List.of(ParameterProperty.builder()
.parameterKey("parameterKey")
.parameterValue("parameterValue")
.build()))
.regions(List.of("regions"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStackSetPropsMixin.StackInstancesPropertystatic final classAn implementation forCfnStackSetPropsMixin.StackInstancesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe AWS Organizations accounts or AWS accounts to deploy stacks to in the specified Regions.default ObjectA list of StackSet 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 AWS Organizations accounts or AWS accounts to deploy stacks to in the specified Regions.Returns union: either
IResolvableorCfnStackSetPropsMixin.DeploymentTargetsProperty- See Also:
-
getParameterOverrides
A list of StackSet parameters whose values you want to override in the selected stack instances.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnStackSetPropsMixin.ParameterProperty>- See Also:
-
getRegions
The names of one or more Regions where you want to create stack instances using the specified AWS accounts .- See Also:
-
builder
-