[][src]Struct rusoto_mediaconnect::SetSourceRequest

pub struct SetSourceRequest {
    pub decryption: Option<Encryption>,
    pub description: Option<String>,
    pub entitlement_arn: Option<String>,
    pub ingest_port: Option<i64>,
    pub max_bitrate: Option<i64>,
    pub max_latency: Option<i64>,
    pub name: Option<String>,
    pub protocol: Option<String>,
    pub stream_id: Option<String>,
    pub vpc_interface_name: Option<String>,
    pub whitelist_cidr: Option<String>,
}

The settings for the source of the flow.

Fields

decryption: Option<Encryption>

The type of encryption that is used on the content ingested from this source.

description: Option<String>

A description for the source. This value is not used or seen outside of the current AWS Elemental MediaConnect account.

entitlement_arn: Option<String>

The ARN of the entitlement that allows you to subscribe to this flow. The entitlement is set by the flow originator, and the ARN is generated as part of the originator's flow.

ingest_port: Option<i64>

The port that the flow will be listening on for incoming content.

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.

name: Option<String>

The name of the source.

protocol: Option<String>

The protocol that is used by the source.

stream_id: Option<String>

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

vpc_interface_name: Option<String>

The name of the VPC interface to use for this source.

whitelist_cidr: Option<String>

The range of IP addresses that should be allowed to contribute content to your source. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.

Trait Implementations

impl Clone for SetSourceRequest[src]

impl Debug for SetSourceRequest[src]

impl Default for SetSourceRequest[src]

impl PartialEq<SetSourceRequest> for SetSourceRequest[src]

impl Serialize for SetSourceRequest[src]

impl StructuralPartialEq for SetSourceRequest[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, 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> Sealed<T> for T where
    T: ?Sized

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.