Class: Aws::IdentityStore::Types::DescribeUserRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-identitystore/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#extensionsArray<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.

Returns:

  • (Array<String>)


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_idString

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.

Returns:

  • (String)


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_idString

The identifier for a user in the identity store.

Returns:

  • (String)


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