Class: Aws::IAM::Types::EntityInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::EntityInfo
- Defined in:
- gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb
Overview
Contains details about the specified entity (user or role).
This data type is an element of the EntityDetails object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN).
-
#id ⇒ String
The identifier of the entity (user or role).
-
#name ⇒ String
The name of the entity (user or role).
-
#path ⇒ String
The path to the entity (user or role).
-
#type ⇒ String
The type of entity (user or role).
Instance Attribute Details
#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.
3292 3293 3294 3295 3296 3297 3298 3299 3300 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 3292 class EntityInfo < Struct.new( :arn, :name, :type, :id, :path) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The identifier of the entity (user or role).
3292 3293 3294 3295 3296 3297 3298 3299 3300 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 3292 class EntityInfo < Struct.new( :arn, :name, :type, :id, :path) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the entity (user or role).
3292 3293 3294 3295 3296 3297 3298 3299 3300 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 3292 class EntityInfo < Struct.new( :arn, :name, :type, :id, :path) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
The path to the entity (user or role). For more information about paths, see IAM identifiers in the IAM User Guide.
3292 3293 3294 3295 3296 3297 3298 3299 3300 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 3292 class EntityInfo < Struct.new( :arn, :name, :type, :id, :path) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of entity (user or role).
3292 3293 3294 3295 3296 3297 3298 3299 3300 |
# File 'gems/aws-sdk-iam/lib/aws-sdk-iam/types.rb', line 3292 class EntityInfo < Struct.new( :arn, :name, :type, :id, :path) SENSITIVE = [] include Aws::Structure end |