Class: Aws::CloudFormation::Types::DeploymentTargets
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::DeploymentTargets
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
When making an API call, you may pass DeploymentTargets data as a hash:
{
accounts: ["Account"],
organizational_unit_ids: ["OrganizationalUnitId"],
}
[Service-managed
permissions] The AWS Organizations accounts to
which StackSets deploys. StackSets does not deploy stack instances to
the organization management account, even if the organization
management account is in your organization or in an OU in your
organization.
For update operations, you can specify either Accounts
or
OrganizationalUnitIds
. For create and delete operations, specify
OrganizationalUnitIds
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#accounts ⇒ Array<String>
The names of one or more AWS accounts for which you want to deploy stack set updates.
-
#organizational_unit_ids ⇒ Array<String>
The organization root ID or organizational unit (OU) IDs to which StackSets deploys.
Instance Attribute Details
#accounts ⇒ Array<String>
The names of one or more AWS accounts for which you want to deploy stack set updates.
1786 1787 1788 1789 1790 1791 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 1786 class DeploymentTargets < Struct.new( :accounts, :organizational_unit_ids) SENSITIVE = [] include Aws::Structure end |
#organizational_unit_ids ⇒ Array<String>
The organization root ID or organizational unit (OU) IDs to which StackSets deploys.
1786 1787 1788 1789 1790 1791 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 1786 class DeploymentTargets < Struct.new( :accounts, :organizational_unit_ids) SENSITIVE = [] include Aws::Structure end |