@Stability(value=Stable)
public static interface CfnStackSet.DeploymentTargetsProperty
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.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 String |
getAccountFilterType()
`CfnStackSet.DeploymentTargetsProperty.AccountFilterType`.
|
default List<String> |
getAccounts()
The names of one or more AWS accounts for which you want to deploy stack set updates.
|
default List<String> |
getOrganizationalUnitIds()
The organization root ID or organizational unit (OU) IDs to which StackSets deploys.
|
@Stability(value=Stable) @Nullable default String getAccountFilterType()
@Stability(value=Stable) @Nullable default List<String> getAccounts()
Pattern : ^[0-9]{12}$
@Stability(value=Stable) @Nullable default List<String> getOrganizationalUnitIds()
Pattern : ^(ou-[a-z0-9]{4,32}-[a-z0-9]{8,32}|r-[a-z0-9]{4,32})$
@Stability(value=Stable) static CfnStackSet.DeploymentTargetsProperty.Builder builder()
Copyright © 2022. All rights reserved.