[][src]Struct rusoto_mediaconnect::Entitlement

pub struct Entitlement {
    pub data_transfer_subscriber_fee_percent: Option<i64>,
    pub description: Option<String>,
    pub encryption: Option<Encryption>,
    pub entitlement_arn: String,
    pub name: String,
    pub subscribers: Vec<String>,
}

The settings for a flow entitlement.

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 entitlement.

encryption: Option<Encryption>

The type of encryption that will be used on the output that is associated with this entitlement.

entitlement_arn: String

The ARN of the entitlement.

name: String

The name of the entitlement.

subscribers: Vec<String>

The AWS account IDs that you want to share your content with. The receiving accounts (subscribers) will be allowed to create their own flow using your content as the source.

Trait Implementations

impl Clone for Entitlement[src]

impl Debug for Entitlement[src]

impl Default for Entitlement[src]

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

impl PartialEq<Entitlement> for Entitlement[src]

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