[][src]Struct rusoto_mediaconnect::Source

pub struct Source {
    pub data_transfer_subscriber_fee_percent: Option<i64>,
    pub decryption: Option<Encryption>,
    pub description: Option<String>,
    pub entitlement_arn: Option<String>,
    pub ingest_ip: Option<String>,
    pub ingest_port: Option<i64>,
    pub name: String,
    pub source_arn: String,
    pub transport: Option<Transport>,
    pub whitelist_cidr: Option<String>,
}

The settings for the source of the flow.

Fields

data_transfer_subscriber_fee_percent: Option<i64>

Percentage from 0-100 of the data transfer cost to be billed to the subscriber.

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 content that comes from another AWS account. The entitlement is set by the content originator and the ARN is generated as part of the originator's flow.

ingest_ip: Option<String>

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

ingest_port: Option<i64>

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

name: String

The name of the source.

source_arn: String

The ARN of the source.

transport: Option<Transport>

Attributes related to the transport stream that are used in the 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 Source[src]

impl Debug for Source[src]

impl Default for Source[src]

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

impl PartialEq<Source> for Source[src]

impl StructuralPartialEq for Source[src]

Auto Trait Implementations

impl RefUnwindSafe for Source

impl Send for Source

impl Sync for Source

impl Unpin for Source

impl UnwindSafe for Source

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: Deserialize<'de>, 
[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> 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.