Class: Aws::IdentityStore::Types::DescribeUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::DescribeUserRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-identitystore/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#extensions ⇒ Array<String>
A collection of extension names indicating what extensions the service should retrieve alongside other user attributes.
-
#identity_store_id ⇒ String
The globally unique identifier for the identity store, such as
d-1234567890. -
#user_id ⇒ String
The identifier for a user in the identity store.
Instance Attribute Details
#extensions ⇒ Array<String>
A collection of extension names indicating what extensions the service should retrieve alongside other user attributes. aws:identitystore:enterprise is the only supported extension name.
634 635 636 637 638 639 640 |
# File 'lib/aws-sdk-identitystore/types.rb', line 634 class DescribeUserRequest < Struct.new( :identity_store_id, :user_id, :extensions) SENSITIVE = [] include Aws::Structure end |
#identity_store_id ⇒ String
The globally unique identifier for the identity store, such as d-1234567890. In this example, d- is a fixed prefix, and 1234567890 is a randomly generated string that contains numbers and lower case letters. This value is generated at the time that a new identity store is created.
634 635 636 637 638 639 640 |
# File 'lib/aws-sdk-identitystore/types.rb', line 634 class DescribeUserRequest < Struct.new( :identity_store_id, :user_id, :extensions) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
The identifier for a user in the identity store.
634 635 636 637 638 639 640 |
# File 'lib/aws-sdk-identitystore/types.rb', line 634 class DescribeUserRequest < Struct.new( :identity_store_id, :user_id, :extensions) SENSITIVE = [] include Aws::Structure end |