[][src]Struct rusoto_mediaconnect::Transport

pub struct Transport {
    pub cidr_allow_list: Option<Vec<String>>,
    pub max_bitrate: Option<i64>,
    pub max_latency: Option<i64>,
    pub protocol: String,
    pub remote_id: Option<String>,
    pub smoothing_latency: Option<i64>,
    pub stream_id: Option<String>,
}

Attributes related to the transport stream that are used in a source or output.

Fields

cidr_allow_list: Option<Vec<String>>

The range of IP addresses that should be allowed to initiate output requests to this flow. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.

max_bitrate: Option<i64>

The smoothing max bitrate for RIST, RTP, and RTP-FEC streams.

max_latency: Option<i64>

The maximum latency in milliseconds. This parameter applies only to RIST-based and Zixi-based streams.

protocol: String

The protocol that is used by the source or output.

remote_id: Option<String>

The remote ID for the Zixi-pull stream.

smoothing_latency: Option<i64>

The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.

stream_id: Option<String>

The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams.

Trait Implementations

impl Clone for Transport[src]

impl Debug for Transport[src]

impl Default for Transport[src]

impl<'de> Deserialize<'de> for Transport[src]

impl PartialEq<Transport> for Transport[src]

impl StructuralPartialEq for Transport[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.