[][src]Struct rusoto_mediaconnect::Output

pub struct Output {
    pub data_transfer_subscriber_fee_percent: Option<i64>,
    pub description: Option<String>,
    pub destination: Option<String>,
    pub encryption: Option<Encryption>,
    pub entitlement_arn: Option<String>,
    pub media_live_input_arn: Option<String>,
    pub name: String,
    pub output_arn: String,
    pub port: Option<i64>,
    pub transport: Option<Transport>,
    pub vpc_interface_attachment: Option<VpcInterfaceAttachment>,
}

The settings for an output.

Fields

data_transfer_subscriber_fee_percent: Option<i64>

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

description: Option<String>

A description of the output.

destination: Option<String>

The address where you want to send the output.

encryption: Option<Encryption>

The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key).

entitlement_arn: Option<String>

The ARN of the entitlement on the originator''s flow. This value is relevant only on entitled flows.

media_live_input_arn: Option<String>

The input ARN of the AWS Elemental MediaLive channel. This parameter is relevant only for outputs that were added by creating a MediaLive input.

name: String

The name of the output. This value must be unique within the current flow.

output_arn: String

The ARN of the output.

port: Option<i64>

The port to use when content is distributed to this output.

transport: Option<Transport>

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

vpc_interface_attachment: Option<VpcInterfaceAttachment>

The name of the VPC interface attachment to use for this output.

Trait Implementations

impl Clone for Output[src]

impl Debug for Output[src]

impl Default for Output[src]

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

impl PartialEq<Output> for Output[src]

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