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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStackSet.DeploymentTargetsPropertystatic final classAn implementation forCfnStackSet.DeploymentTargetsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringLimit deployment targets to individual accounts or include additional accounts with provided OUs.The names of one or more AWS accounts for which you want to deploy stack set updates.default StringReturns the value of theAccountsUrlproperty.The organization root ID or organizational unit (OU) IDs to which StackSets deploys.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountFilterType
Limit deployment targets to individual accounts or include additional accounts with provided OUs.The following is a list of possible values for the
AccountFilterTypeoperation.INTERSECTION: StackSet deploys to the accounts specified in theAccountsparameter.DIFFERENCE: StackSet deploys to the OU, excluding the accounts specified in theAccountsparameter.UNIONStackSet deploys to the OU, and the accounts specified in theAccountsparameter.UNIONis not supported for create operations when using StackSet as a resource.
- See Also:
-
getAccounts
The names of one or more AWS accounts for which you want to deploy stack set updates.Pattern :
^[0-9]{12}$- See Also:
-
getAccountsUrl
Returns the value of theAccountsUrlproperty.- See Also:
-
getOrganizationalUnitIds
The organization root ID or organizational unit (OU) IDs to which StackSets deploys.Pattern :
^(ou-[a-z0-9]{4,32}-[a-z0-9]{8,32}|r-[a-z0-9]{4,32})$- See Also:
-
builder
-