public static interface CfnStackSet.StackInstancesProperty
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() .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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnStackSet.StackInstancesProperty.Builder
A builder for
CfnStackSet.StackInstancesProperty |
static class |
CfnStackSet.StackInstancesProperty.Jsii$Proxy
An implementation for
CfnStackSet.StackInstancesProperty |
Modifier and Type | Method and Description |
---|---|
static CfnStackSet.StackInstancesProperty.Builder |
builder() |
java.lang.Object |
getDeploymentTargets()
The AWS `OrganizationalUnitIds` or `Accounts` for which to create stack instances in the specified Regions.
|
default java.lang.Object |
getParameterOverrides()
A list of stack set parameters whose values you want to override in the selected stack instances.
|
java.util.List<java.lang.String> |
getRegions()
The names of one or more Regions where you want to create stack instances using the specified AWS accounts .
|
java.lang.Object getDeploymentTargets()
java.util.List<java.lang.String> getRegions()
default java.lang.Object getParameterOverrides()
static CfnStackSet.StackInstancesProperty.Builder builder()