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"))
                 .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();
 
  • Method Details

    • getDeploymentTargets

      @Stability(Stable) @NotNull Object getDeploymentTargets()
      The AWS OrganizationalUnitIds or Accounts for which to create stack instances in the specified Regions.
    • getRegions

      @Stability(Stable) @NotNull List<String> getRegions()
      The names of one or more Regions where you want to create stack instances using the specified AWS accounts .
    • getParameterOverrides

      @Stability(Stable) @Nullable default Object getParameterOverrides()
      A list of stack set parameters whose values you want to override in the selected stack instances.
    • builder

      @Stability(Stable) static CfnStackSet.StackInstancesProperty.Builder builder()
      Returns:
      a CfnStackSet.StackInstancesProperty.Builder of CfnStackSet.StackInstancesProperty