public static interface CfnStackSet.DeploymentTargetsProperty
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")) .organizationalUnitIds(List.of("organizationalUnitIds")) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnStackSet.DeploymentTargetsProperty.Builder
A builder for
CfnStackSet.DeploymentTargetsProperty |
static class |
CfnStackSet.DeploymentTargetsProperty.Jsii$Proxy
An implementation for
CfnStackSet.DeploymentTargetsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnStackSet.DeploymentTargetsProperty.Builder |
builder() |
default java.lang.String |
getAccountFilterType()
`CfnStackSet.DeploymentTargetsProperty.AccountFilterType`.
|
default java.util.List<java.lang.String> |
getAccounts()
The names of one or more AWS accounts for which you want to deploy stack set updates.
|
default java.util.List<java.lang.String> |
getOrganizationalUnitIds()
The organization root ID or organizational unit (OU) IDs to which StackSets deploys.
|
default java.lang.String getAccountFilterType()
default java.util.List<java.lang.String> getAccounts()
Pattern : ^[0-9]{12}$
default java.util.List<java.lang.String> getOrganizationalUnitIds()
Pattern : ^(ou-[a-z0-9]{4,32}-[a-z0-9]{8,32}|r-[a-z0-9]{4,32})$
static CfnStackSet.DeploymentTargetsProperty.Builder builder()