You are viewing documentation for version 3 of the AWS SDK for Ruby. Version 2 documentation can be found here.
Class: Aws::Chime::Types::Credential
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::Credential
- Defined in:
- gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb
Overview
Note:
When making an API call, you may pass Credential data as a hash:
{
username: "SensitiveString",
password: "SensitiveString",
}
The SIP credentials used to authenticate requests to your Amazon Chime Voice Connector.
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.
1108 1109 1110 1111 1112 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 1108 class Credential < Struct.new( :username, :password) include Aws::Structure end |
#username ⇒ String
The RFC2617 compliant user name associated with the SIP credentials, in US-ASCII format.
1108 1109 1110 1111 1112 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 1108 class Credential < Struct.new( :username, :password) include Aws::Structure end |