Class: Aws::IAM::Types::GetUserPolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::GetUserPolicyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
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: _+=,.@-
4271 4272 4273 4274 4275 4276 |
# File 'lib/aws-sdk-iam/types.rb', line 4271 class GetUserPolicyRequest < Struct.new( :user_name, :policy_name) SENSITIVE = [] 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: _+=,.@-
4271 4272 4273 4274 4275 4276 |
# File 'lib/aws-sdk-iam/types.rb', line 4271 class GetUserPolicyRequest < Struct.new( :user_name, :policy_name) SENSITIVE = [] include Aws::Structure end |