You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::KinesisVideo::Types::SingleMasterChannelEndpointConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing SingleMasterChannelEndpointConfiguration as input to an Aws::Client method, you can use a vanilla Hash:

{
  protocols: ["WSS"], # accepts WSS, HTTPS
  role: "MASTER", # accepts MASTER, VIEWER
}

An object that contains the endpoint configuration for the SINGLE_MASTER channel type.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#protocolsArray<String>

This property is used to determine the nature of communication over this SINGLE_MASTER signaling channel. If WSS is specified, this API returns a websocket endpoint. If HTTPS is specified, this API returns an HTTPS endpoint.

Returns:

  • (Array<String>)

    This property is used to determine the nature of communication over this SINGLE_MASTER signaling channel.

#roleString

This property is used to determine messaging permissions in this SINGLE_MASTER signaling channel. If MASTER is specified, this API returns an endpoint that a client can use to receive offers from and send answers to any of the viewers on this signaling channel. If VIEWER is specified, this API returns an endpoint that a client can use only to send offers to another MASTER client on this signaling channel.

Possible values:

  • MASTER
  • VIEWER

Returns:

  • (String)

    This property is used to determine messaging permissions in this SINGLE_MASTER signaling channel.