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 Organizations accounts or AWS accounts to deploy stacks to in the specified Regions.
When deploying to AWS Organizations accounts with SERVICE_MANAGED permissions:
- You must specify the
OrganizationalUnitIdsproperty. - If you specify organizational units (OUs) for
OrganizationalUnitIdsand use either theAccountsorAccountsUrlproperty, you must also specify theAccountFilterTypeproperty.
When deploying to AWS accounts with SELF_MANAGED permissions:
- You must specify either the
AccountsorAccountsUrlproperty, but not both.
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 StringRefines which accounts to deploy stacks to by specifying how to use theAccountsandOrganizationalUnitIdsproperties together.The account IDs of the AWS accounts .default StringThe Amazon S3 URL path to a file that contains a list of AWS account IDs.The organization root ID or organizational unit (OU) IDs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountFilterType
Refines which accounts to deploy stacks to by specifying how to use theAccountsandOrganizationalUnitIdsproperties together.The following values determine how CloudFormation selects target accounts:
INTERSECTION: StackSet deploys to the accounts specified in theAccountsproperty.DIFFERENCE: StackSet deploys to the OU, excluding the accounts specified in theAccountsproperty.UNION: StackSet deploys to the OU, and the accounts specified in theAccountsproperty.UNIONis not supported for create operations when using StackSet as a resource or theCreateStackInstancesAPI.
- See Also:
-
getAccounts
The account IDs of the AWS accounts .If you have many account numbers, you can provide those accounts using the
AccountsUrlproperty instead.Pattern :
^[0-9]{12}$- See Also:
-
getAccountsUrl
The Amazon S3 URL path to a file that contains a list of AWS account IDs.The file format must be either
.csvor.txt, and the data can be comma-separated or new-line-separated. There is currently a 10MB limit for the data (approximately 800,000 accounts).This property serves the same purpose as
Accountsbut allows you to specify a large number of accounts.- See Also:
-
getOrganizationalUnitIds
The organization root ID or organizational unit (OU) IDs.Pattern :
^(ou-[a-z0-9]{4,32}-[a-z0-9]{8,32}|r-[a-z0-9]{4,32})$- See Also:
-
builder
-