Class: Aws::IAM::Types::GetUserPolicyResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::GetUserPolicyResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Contains the response to a successful GetUserPolicy request.
Instance Attribute Summary collapse
-
#policy_document ⇒ String
The policy document.
-
#policy_name ⇒ String
The name of the policy.
-
#user_name ⇒ String
The user the policy is associated with.
Instance Attribute Details
#policy_document ⇒ String
The policy document.
4033 4034 4035 4036 4037 4038 |
# File 'lib/aws-sdk-iam/types.rb', line 4033 class GetUserPolicyResponse < Struct.new( :user_name, :policy_name, :policy_document) include Aws::Structure end |
#policy_name ⇒ String
The name of the policy.
4033 4034 4035 4036 4037 4038 |
# File 'lib/aws-sdk-iam/types.rb', line 4033 class GetUserPolicyResponse < Struct.new( :user_name, :policy_name, :policy_document) include Aws::Structure end |
#user_name ⇒ String
The user the policy is associated with.
4033 4034 4035 4036 4037 4038 |
# File 'lib/aws-sdk-iam/types.rb', line 4033 class GetUserPolicyResponse < Struct.new( :user_name, :policy_name, :policy_document) include Aws::Structure end |