Class: Aws::ChimeSDKIdentity::Types::Identity

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-chimesdkidentity/lib/aws-sdk-chimesdkidentity/types.rb

Overview

The details of a user or bot.

Constant Summary collapse

SENSITIVE =
[:name]

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The ARN in an Identity.

Returns:

  • (String)


971
972
973
974
975
976
# File 'gems/aws-sdk-chimesdkidentity/lib/aws-sdk-chimesdkidentity/types.rb', line 971

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

#nameString

The name in an Identity.

Returns:

  • (String)


971
972
973
974
975
976
# File 'gems/aws-sdk-chimesdkidentity/lib/aws-sdk-chimesdkidentity/types.rb', line 971

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