[][src]Trait rusoto_mediatailor::MediaTailor

pub trait MediaTailor {
#[must_use]    pub fn delete_playback_configuration<'life0, 'async_trait>(
        &'life0 self,
        input: DeletePlaybackConfigurationRequest
    ) -> Pin<Box<dyn Future<Output = Result<DeletePlaybackConfigurationResponse, RusotoError<DeletePlaybackConfigurationError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn get_playback_configuration<'life0, 'async_trait>(
        &'life0 self,
        input: GetPlaybackConfigurationRequest
    ) -> Pin<Box<dyn Future<Output = Result<GetPlaybackConfigurationResponse, RusotoError<GetPlaybackConfigurationError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn list_playback_configurations<'life0, 'async_trait>(
        &'life0 self,
        input: ListPlaybackConfigurationsRequest
    ) -> Pin<Box<dyn Future<Output = Result<ListPlaybackConfigurationsResponse, RusotoError<ListPlaybackConfigurationsError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn list_tags_for_resource<'life0, 'async_trait>(
        &'life0 self,
        input: ListTagsForResourceRequest
    ) -> Pin<Box<dyn Future<Output = Result<ListTagsForResourceResponse, RusotoError<ListTagsForResourceError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn put_playback_configuration<'life0, 'async_trait>(
        &'life0 self,
        input: PutPlaybackConfigurationRequest
    ) -> Pin<Box<dyn Future<Output = Result<PutPlaybackConfigurationResponse, RusotoError<PutPlaybackConfigurationError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn tag_resource<'life0, 'async_trait>(
        &'life0 self,
        input: TagResourceRequest
    ) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<TagResourceError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] pub fn untag_resource<'life0, 'async_trait>(
        &'life0 self,
        input: UntagResourceRequest
    ) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<UntagResourceError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Trait representing the capabilities of the MediaTailor API. MediaTailor clients implement this trait.

Required methods

#[must_use]pub fn delete_playback_configuration<'life0, 'async_trait>(
    &'life0 self,
    input: DeletePlaybackConfigurationRequest
) -> Pin<Box<dyn Future<Output = Result<DeletePlaybackConfigurationResponse, RusotoError<DeletePlaybackConfigurationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the playback configuration for the specified name.

#[must_use]pub fn get_playback_configuration<'life0, 'async_trait>(
    &'life0 self,
    input: GetPlaybackConfigurationRequest
) -> Pin<Box<dyn Future<Output = Result<GetPlaybackConfigurationResponse, RusotoError<GetPlaybackConfigurationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the playback configuration for the specified name.

#[must_use]pub fn list_playback_configurations<'life0, 'async_trait>(
    &'life0 self,
    input: ListPlaybackConfigurationsRequest
) -> Pin<Box<dyn Future<Output = Result<ListPlaybackConfigurationsResponse, RusotoError<ListPlaybackConfigurationsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of the playback configurations defined in AWS Elemental MediaTailor. You can specify a maximum number of configurations to return at a time. The default maximum is 50. Results are returned in pagefuls. If MediaTailor has more configurations than the specified maximum, it provides parameters in the response that you can use to retrieve the next pageful.

#[must_use]pub fn list_tags_for_resource<'life0, 'async_trait>(
    &'life0 self,
    input: ListTagsForResourceRequest
) -> Pin<Box<dyn Future<Output = Result<ListTagsForResourceResponse, RusotoError<ListTagsForResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of the tags assigned to the specified playback configuration resource.

#[must_use]pub fn put_playback_configuration<'life0, 'async_trait>(
    &'life0 self,
    input: PutPlaybackConfigurationRequest
) -> Pin<Box<dyn Future<Output = Result<PutPlaybackConfigurationResponse, RusotoError<PutPlaybackConfigurationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds a new playback configuration to AWS Elemental MediaTailor.

#[must_use]pub fn tag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: TagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<TagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds tags to the specified playback configuration resource. You can specify one or more tags to add.

#[must_use]pub fn untag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: UntagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<UntagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Removes tags from the specified playback configuration resource. You can specify one or more tags to remove.

Loading content...

Implementors

impl MediaTailor for MediaTailorClient[src]

pub fn delete_playback_configuration<'life0, 'async_trait>(
    &'life0 self,
    input: DeletePlaybackConfigurationRequest
) -> Pin<Box<dyn Future<Output = Result<DeletePlaybackConfigurationResponse, RusotoError<DeletePlaybackConfigurationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Deletes the playback configuration for the specified name.

pub fn get_playback_configuration<'life0, 'async_trait>(
    &'life0 self,
    input: GetPlaybackConfigurationRequest
) -> Pin<Box<dyn Future<Output = Result<GetPlaybackConfigurationResponse, RusotoError<GetPlaybackConfigurationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns the playback configuration for the specified name.

pub fn list_playback_configurations<'life0, 'async_trait>(
    &'life0 self,
    input: ListPlaybackConfigurationsRequest
) -> Pin<Box<dyn Future<Output = Result<ListPlaybackConfigurationsResponse, RusotoError<ListPlaybackConfigurationsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of the playback configurations defined in AWS Elemental MediaTailor. You can specify a maximum number of configurations to return at a time. The default maximum is 50. Results are returned in pagefuls. If MediaTailor has more configurations than the specified maximum, it provides parameters in the response that you can use to retrieve the next pageful.

pub fn list_tags_for_resource<'life0, 'async_trait>(
    &'life0 self,
    input: ListTagsForResourceRequest
) -> Pin<Box<dyn Future<Output = Result<ListTagsForResourceResponse, RusotoError<ListTagsForResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Returns a list of the tags assigned to the specified playback configuration resource.

pub fn put_playback_configuration<'life0, 'async_trait>(
    &'life0 self,
    input: PutPlaybackConfigurationRequest
) -> Pin<Box<dyn Future<Output = Result<PutPlaybackConfigurationResponse, RusotoError<PutPlaybackConfigurationError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds a new playback configuration to AWS Elemental MediaTailor.

pub fn tag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: TagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<TagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Adds tags to the specified playback configuration resource. You can specify one or more tags to add.

pub fn untag_resource<'life0, 'async_trait>(
    &'life0 self,
    input: UntagResourceRequest
) -> Pin<Box<dyn Future<Output = Result<(), RusotoError<UntagResourceError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Removes tags from the specified playback configuration resource. You can specify one or more tags to remove.

Loading content...