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"],
accounts_url: "AccountsUrl",
organizational_unit_ids: ["OrganizationalUnitId"],
}
[Service-managed permissions] The Organizations accounts to which StackSets deploys. StackSets doesn't 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 Amazon Web Services accounts for which you want to deploy stack set updates.
-
#accounts_url ⇒ String
Returns the value of the
AccountsUrl
property. -
#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 Amazon Web Services accounts for which you want to deploy stack set updates.
2283 2284 2285 2286 2287 2288 2289 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 2283 class DeploymentTargets < Struct.new( :accounts, :accounts_url, :organizational_unit_ids) SENSITIVE = [] include Aws::Structure end |
#accounts_url ⇒ String
Returns the value of the AccountsUrl
property.
2283 2284 2285 2286 2287 2288 2289 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 2283 class DeploymentTargets < Struct.new( :accounts, :accounts_url, :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.
2283 2284 2285 2286 2287 2288 2289 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 2283 class DeploymentTargets < Struct.new( :accounts, :accounts_url, :organizational_unit_ids) SENSITIVE = [] include Aws::Structure end |