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
-
#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
#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.
549 550 551 552 553 554 |
# File 'lib/aws-sdk-identitystore/types.rb', line 549 class DescribeUserRequest < Struct.new( :identity_store_id, :user_id) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
The identifier for a user in the identity store.
549 550 551 552 553 554 |
# File 'lib/aws-sdk-identitystore/types.rb', line 549 class DescribeUserRequest < Struct.new( :identity_store_id, :user_id) SENSITIVE = [] include Aws::Structure end |