Class: Aws::Chime::Types::Credential

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

Overview

The SIP credentials used to authenticate requests to your Amazon Chime 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)


2654
2655
2656
2657
2658
2659
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 2654

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)


2654
2655
2656
2657
2658
2659
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 2654

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