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: