[][src]Struct rusoto_mediaconnect::GrantEntitlementRequest

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

The entitlements that you want to grant on a flow.

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. This description appears only on the AWS Elemental MediaConnect console and will not be seen by the subscriber or end user.

encryption: Option<Encryption>

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

name: Option<String>

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

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 flows using your content as the source.

Trait Implementations

impl Clone for GrantEntitlementRequest[src]

impl Debug for GrantEntitlementRequest[src]

impl Default for GrantEntitlementRequest[src]

impl PartialEq<GrantEntitlementRequest> for GrantEntitlementRequest[src]

impl Serialize for GrantEntitlementRequest[src]

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