@Stability(value=Stable)
public static interface CfnStackSet.StackInstancesProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.*;
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();
| 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() |
Object |
getDeploymentTargets()
The AWS `OrganizationalUnitIds` or `Accounts` for which to create stack instances in the specified Regions.
|
default Object |
getParameterOverrides()
A list of stack set parameters whose values you want to override in the selected stack instances.
|
List<String> |
getRegions()
The names of one or more Regions where you want to create stack instances using the specified AWS accounts .
|
@Stability(value=Stable) @NotNull Object getDeploymentTargets()
@Stability(value=Stable) @NotNull List<String> getRegions()
@Stability(value=Stable) @Nullable default Object getParameterOverrides()
@Stability(value=Stable) static CfnStackSet.StackInstancesProperty.Builder builder()
Copyright © 2022. All rights reserved.