Class: Aws::ConnectParticipant::Types::ConnectionCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectParticipant::Types::ConnectionCredentials
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connectparticipant/types.rb
Overview
Connection credentials.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_token ⇒ String
The connection token.
-
#expiry ⇒ String
The expiration of the token.
Instance Attribute Details
#connection_token ⇒ String
The connection token.
128 129 130 131 132 133 |
# File 'lib/aws-sdk-connectparticipant/types.rb', line 128 class ConnectionCredentials < Struct.new( :connection_token, :expiry) SENSITIVE = [] include Aws::Structure end |
#expiry ⇒ String
The expiration of the token.
It’s specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.
128 129 130 131 132 133 |
# File 'lib/aws-sdk-connectparticipant/types.rb', line 128 class ConnectionCredentials < Struct.new( :connection_token, :expiry) SENSITIVE = [] include Aws::Structure end |