Class: Aws::IAM::Types::PolicyUser
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::PolicyUser
- Defined in:
- gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb
Overview
Contains information about a user that a managed policy is attached to.
This data type is used as a response element in the ListEntitiesForPolicy operation.
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
-
#user_id ⇒ String
The stable and unique string identifying the user.
-
#user_name ⇒ String
The name (friendly name, not ARN) identifying the user.
Instance Attribute Details
#user_id ⇒ String
The stable and unique string identifying the user. For more information about IDs, see IAM identifiers in the IAM User Guide.
8271 8272 8273 8274 8275 8276 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 8271 class PolicyUser < Struct.new( :user_name, :user_id) SENSITIVE = [] include Aws::Structure end |
#user_name ⇒ String
The name (friendly name, not ARN) identifying the user.
8271 8272 8273 8274 8275 8276 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 8271 class PolicyUser < Struct.new( :user_name, :user_id) SENSITIVE = [] include Aws::Structure end |