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.
| 1125 1126 1127 1128 1129 1130 | # File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 1125 class Websocket < Struct.new( :url, :connection_expiry) SENSITIVE = [] include Aws::Structure end |