[][src]Struct rusoto_mediaconnect::CreateFlowRequest

pub struct CreateFlowRequest {
    pub availability_zone: Option<String>,
    pub entitlements: Option<Vec<GrantEntitlementRequest>>,
    pub name: String,
    pub outputs: Option<Vec<AddOutputRequest>>,
    pub source: Option<SetSourceRequest>,
    pub source_failover_config: Option<FailoverConfig>,
    pub sources: Option<Vec<SetSourceRequest>>,
    pub vpc_interfaces: Option<Vec<VpcInterfaceRequest>>,
}

Creates a new flow. The request must include one source. The request optionally can include outputs (up to 50) and entitlements (up to 50).

Fields

availability_zone: Option<String>

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

entitlements: Option<Vec<GrantEntitlementRequest>>

The entitlements that you want to grant on a flow.

name: String

The name of the flow.

outputs: Option<Vec<AddOutputRequest>>

The outputs that you want to add to this flow.

source: Option<SetSourceRequest>source_failover_config: Option<FailoverConfig>sources: Option<Vec<SetSourceRequest>>vpc_interfaces: Option<Vec<VpcInterfaceRequest>>

The VPC interfaces you want on the flow.

Trait Implementations

impl Clone for CreateFlowRequest[src]

impl Debug for CreateFlowRequest[src]

impl Default for CreateFlowRequest[src]

impl PartialEq<CreateFlowRequest> for CreateFlowRequest[src]

impl Serialize for CreateFlowRequest[src]

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