Class: Aws::Chime::Types::Identity

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

Overview

The details of a user.

Constant Summary collapse

SENSITIVE =
[:name]

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The ARN in an Identity.

Returns:

  • (String)


4671
4672
4673
4674
4675
4676
# File 'lib/aws-sdk-chime/types.rb', line 4671

class Identity < Struct.new(
  :arn,
  :name)
  SENSITIVE = [:name]
  include Aws::Structure
end

#nameString

The name in an Identity.

Returns:

  • (String)


4671
4672
4673
4674
4675
4676
# File 'lib/aws-sdk-chime/types.rb', line 4671

class Identity < Struct.new(
  :arn,
  :name)
  SENSITIVE = [:name]
  include Aws::Structure
end