Class: Aws::ChimeSDKVoice::Types::Credential
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKVoice::Types::Credential
- Includes:
- Structure
- Defined in:
- 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
-
#password ⇒ String
The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.
-
#username ⇒ String
The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format.
Instance Attribute Details
#password ⇒ String
The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.
676 677 678 679 680 681 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 676 class Credential < Struct.new( :username, :password) SENSITIVE = [:username, :password] include Aws::Structure end |
#username ⇒ String
The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format.
676 677 678 679 680 681 |
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 676 class Credential < Struct.new( :username, :password) SENSITIVE = [:username, :password] include Aws::Structure end |