[][src]Struct rusoto_kinesisvideo::SingleMasterChannelEndpointConfiguration

pub struct SingleMasterChannelEndpointConfiguration {
    pub protocols: Option<Vec<String>>,
    pub role: Option<String>,
}

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

Fields

protocols: Option<Vec<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.

role: Option<String>

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.

Trait Implementations

impl Clone for SingleMasterChannelEndpointConfiguration[src]

impl Debug for SingleMasterChannelEndpointConfiguration[src]

impl Default for SingleMasterChannelEndpointConfiguration[src]

impl PartialEq<SingleMasterChannelEndpointConfiguration> for SingleMasterChannelEndpointConfiguration[src]

impl Serialize for SingleMasterChannelEndpointConfiguration[src]

impl StructuralPartialEq for SingleMasterChannelEndpointConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.