Interface CfnStackSet.DeploymentTargetsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStackSet.DeploymentTargetsProperty.Jsii$Proxy
Enclosing class:
CfnStackSet

@Stability(Stable) public static interface CfnStackSet.DeploymentTargetsProperty extends software.amazon.jsii.JsiiSerializable
The AWS OrganizationalUnitIds or Accounts for which to create stack instances in the specified 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.*;
 DeploymentTargetsProperty deploymentTargetsProperty = DeploymentTargetsProperty.builder()
         .accountFilterType("accountFilterType")
         .accounts(List.of("accounts"))
         .accountsUrl("accountsUrl")
         .organizationalUnitIds(List.of("organizationalUnitIds"))
         .build();
 

See Also: