Class: Aws::ChimeSDKVoice::Types::Credential

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

Overview

The SIP credentials used to authenticate requests to an Amazon Chime SDK Voice Connector.

Constant Summary collapse

SENSITIVE =
[:username, :password]

Instance Attribute Summary collapse

Instance Attribute Details

#passwordString

The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.

Returns:

  • (String)


676
677
678
679
680
681
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 676

class Credential < Struct.new(
  :username,
  :password)
  SENSITIVE = [:username, :password]
  include Aws::Structure
end

#usernameString

The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format.

Returns:

  • (String)


676
677
678
679
680
681
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 676

class Credential < Struct.new(
  :username,
  :password)
  SENSITIVE = [:username, :password]
  include Aws::Structure
end