Class: Aws::ChimeSDKMessaging::Types::Identity

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-chimesdkmessaging/lib/aws-sdk-chimesdkmessaging/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)


1927
1928
1929
1930
1931
1932
# File 'gems/aws-sdk-chimesdkmessaging/lib/aws-sdk-chimesdkmessaging/types.rb', line 1927

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

#nameString

The name in an Identity.

Returns:

  • (String)


1927
1928
1929
1930
1931
1932
# File 'gems/aws-sdk-chimesdkmessaging/lib/aws-sdk-chimesdkmessaging/types.rb', line 1927

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