Class: Aws::Chime::Types::Credential
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::Credential
- Includes:
- Structure
- Defined in:
- 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
-
#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.
2654 2655 2656 2657 2658 2659 |
# File 'lib/aws-sdk-chime/types.rb', line 2654 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.
2654 2655 2656 2657 2658 2659 |
# File 'lib/aws-sdk-chime/types.rb', line 2654 class Credential < Struct.new( :username, :password) SENSITIVE = [:username, :password] include Aws::Structure end |