[][src]Struct rusoto_mediaconnect::Flow

pub struct Flow {
    pub availability_zone: String,
    pub description: Option<String>,
    pub egress_ip: Option<String>,
    pub entitlements: Vec<Entitlement>,
    pub flow_arn: String,
    pub name: String,
    pub outputs: Vec<Output>,
    pub source: Source,
    pub source_failover_config: Option<FailoverConfig>,
    pub sources: Option<Vec<Source>>,
    pub status: String,
    pub vpc_interfaces: Option<Vec<VpcInterface>>,
}

The settings for a flow, including its source, outputs, and entitlements.

Fields

availability_zone: String

The Availability Zone that you want to create the flow in. These options are limited to the Availability Zones within the current AWS.

description: Option<String>

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

egress_ip: Option<String>

The IP address from which video will be sent to output destinations.

entitlements: Vec<Entitlement>

The entitlements in this flow.

flow_arn: String

The Amazon Resource Name (ARN), a unique identifier for any AWS resource, of the flow.

name: String

The name of the flow.

outputs: Vec<Output>

The outputs in this flow.

source: Sourcesource_failover_config: Option<FailoverConfig>sources: Option<Vec<Source>>status: String

The current status of the flow.

vpc_interfaces: Option<Vec<VpcInterface>>

The VPC Interfaces for this flow.

Trait Implementations

impl Clone for Flow[src]

impl Debug for Flow[src]

impl Default for Flow[src]

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

impl PartialEq<Flow> for Flow[src]

impl StructuralPartialEq for Flow[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.