Class: Aws::Organizations::Types::PolicyTargetSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Organizations::Types::PolicyTargetSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-organizations/types.rb
Overview
Contains information about a root, OU, or account that a policy is attached to.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the policy target.
-
#name ⇒ String
The friendly name of the policy target.
-
#target_id ⇒ String
The unique identifier (ID) of the policy target.
-
#type ⇒ String
The type of the policy target.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the policy target.
For more information about ARNs in Organizations, see [ARN Formats Supported by Organizations] in the *Amazon Web Services Service Authorization Reference*.
4186 4187 4188 4189 4190 4191 4192 4193 |
# File 'lib/aws-sdk-organizations/types.rb', line 4186 class PolicyTargetSummary < Struct.new( :target_id, :arn, :name, :type) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The friendly name of the policy target.
The [regex pattern] that is used to validate this parameter is a string of any of the characters in the ASCII character range.
4186 4187 4188 4189 4190 4191 4192 4193 |
# File 'lib/aws-sdk-organizations/types.rb', line 4186 class PolicyTargetSummary < Struct.new( :target_id, :arn, :name, :type) SENSITIVE = [] include Aws::Structure end |
#target_id ⇒ String
The unique identifier (ID) of the policy target.
The [regex pattern] for a target ID string requires one of the following:
-
Root - A string that begins with “r-” followed by from 4 to 32 lowercase letters or digits.
-
Account - A string that consists of exactly 12 digits.
-
**Organizational unit (OU)** - A string that begins with “ou-” followed by from 4 to 32 lowercase letters or digits (the ID of the root that the OU is in). This string is followed by a second “-” dash and from 8 to 32 additional lowercase letters or digits.
4186 4187 4188 4189 4190 4191 4192 4193 |
# File 'lib/aws-sdk-organizations/types.rb', line 4186 class PolicyTargetSummary < Struct.new( :target_id, :arn, :name, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the policy target.
4186 4187 4188 4189 4190 4191 4192 4193 |
# File 'lib/aws-sdk-organizations/types.rb', line 4186 class PolicyTargetSummary < Struct.new( :target_id, :arn, :name, :type) SENSITIVE = [] include Aws::Structure end |