[][src]Struct rusoto_elastictranscoder::Permission

pub struct Permission {
    pub access: Option<Vec<String>>,
    pub grantee: Option<String>,
    pub grantee_type: Option<String>,
}

The Permission structure.

Fields

access: Option<Vec<String>>

The permission that you want to give to the AWS user that is listed in Grantee. Valid values include:

grantee: Option<String>

The AWS user or group that you want to have access to transcoded files and playlists. To identify the user or group, you can specify the canonical user ID for an AWS account, an origin access identity for a CloudFront distribution, the registered email address of an AWS account, or a predefined Amazon S3 group.

grantee_type: Option<String>

The type of value that appears in the Grantee object:

Trait Implementations

impl PartialEq<Permission> for Permission[src]

impl Default for Permission[src]

impl Clone for Permission[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Permission[src]

impl Serialize for Permission[src]

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

Auto Trait Implementations

impl Send for Permission

impl Sync for Permission

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self