Class: Aws::ConnectParticipant::Types::Websocket
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectParticipant::Types::Websocket
- Defined in:
- gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb
Overview
The websocket for the participant's connection.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_expiry ⇒ String
The URL expiration timestamp in ISO date format.
-
#url ⇒ String
The URL of the websocket.
Instance Attribute Details
#connection_expiry ⇒ String
The URL expiration timestamp in ISO date format.
It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.
910 911 912 913 914 915 |
# File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 910 class Websocket < Struct.new( :url, :connection_expiry) SENSITIVE = [] include Aws::Structure end |