Class: Aws::IAM::Types::GetUserPolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::GetUserPolicyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Note:
When making an API call, you may pass GetUserPolicyRequest data as a hash:
{
user_name: "existingUserNameType", # required
policy_name: "policyNameType", # required
}
Instance Attribute Summary collapse
-
#policy_name ⇒ String
The name of the policy document to get.
-
#user_name ⇒ String
The name of the user who the policy is associated with.
Instance Attribute Details
#policy_name ⇒ String
The name of the policy document to get.
This parameter allows (through its [regex pattern]) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
4011 4012 4013 4014 4015 |
# File 'lib/aws-sdk-iam/types.rb', line 4011 class GetUserPolicyRequest < Struct.new( :user_name, :policy_name) include Aws::Structure end |
#user_name ⇒ String
The name of the user who the policy is associated with.
This parameter allows (through its [regex pattern]) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
4011 4012 4013 4014 4015 |
# File 'lib/aws-sdk-iam/types.rb', line 4011 class GetUserPolicyRequest < Struct.new( :user_name, :policy_name) include Aws::Structure end |