Class: Aws::IAM::Types::AttachedPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::AttachedPolicy
- Defined in:
- gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb
Overview
Contains information about an attached policy.
An attached policy is a managed policy that has been attached to a user, group, or role. This data type is used as a response element in the ListAttachedGroupPolicies, ListAttachedRolePolicies, ListAttachedUserPolicies, and GetAccountAuthorizationDetails operations.
For more information about managed policies, refer to Managed policies and inline policies in the IAM User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#policy_arn ⇒ String
The Amazon Resource Name (ARN).
-
#policy_name ⇒ String
The friendly name of the attached policy.
Instance Attribute Details
#policy_arn ⇒ String
The Amazon Resource Name (ARN). ARNs are unique identifiers for Amazon Web Services resources.
For more information about ARNs, go to Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
522 523 524 525 526 527 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 522 class AttachedPolicy < Struct.new( :policy_name, :policy_arn) SENSITIVE = [] include Aws::Structure end |
#policy_name ⇒ String
The friendly name of the attached policy.
522 523 524 525 526 527 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 522 class AttachedPolicy < Struct.new( :policy_name, :policy_arn) SENSITIVE = [] include Aws::Structure end |