[][src]Struct rusoto_mediatailor::PutPlaybackConfigurationResponse

pub struct PutPlaybackConfigurationResponse {
    pub ad_decision_server_url: Option<String>,
    pub cdn_configuration: Option<CdnConfiguration>,
    pub dash_configuration: Option<DashConfiguration>,
    pub hls_configuration: Option<HlsConfiguration>,
    pub name: Option<String>,
    pub playback_configuration_arn: Option<String>,
    pub playback_endpoint_prefix: Option<String>,
    pub session_initialization_endpoint_prefix: Option<String>,
    pub slate_ad_url: Option<String>,
    pub tags: Option<HashMap<String, String>>,
    pub transcode_profile_name: Option<String>,
    pub video_content_source_url: Option<String>,
}

Fields

ad_decision_server_url: Option<String>

The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing, you can provide a static VAST URL. The maximum length is 25,000 characters.

cdn_configuration: Option<CdnConfiguration>

The configuration for using a content delivery network (CDN), like Amazon CloudFront, for content and ad segment management.

dash_configuration: Option<DashConfiguration>

The configuration for DASH content.

hls_configuration: Option<HlsConfiguration>

The configuration for HLS content.

name: Option<String>

The identifier for the playback configuration.

playback_configuration_arn: Option<String>

The Amazon Resource Name (ARN) for the playback configuration.

playback_endpoint_prefix: Option<String>

The URL that the player accesses to get a manifest from AWS Elemental MediaTailor. This session will use server-side reporting.

session_initialization_endpoint_prefix: Option<String>

The URL that the player uses to initialize a session that uses client-side reporting.

slate_ad_url: Option<String>

The URL for a high-quality video asset to transcode and use to fill in time that's not used by ads. AWS Elemental MediaTailor shows the slate to fill in gaps in media content. Configuring the slate is optional for non-VPAID playback configurations. For VPAID, the slate is required because MediaTailor provides it in the slots designated for dynamic ad content. The slate must be a high-quality asset that contains both audio and video.

tags: Option<HashMap<String, String>>

The tags assigned to the playback configuration.

transcode_profile_name: Option<String>

The name that is used to associate this playback configuration with a custom transcode profile. This overrides the dynamic transcoding defaults of MediaTailor. Use this only if you have already set up custom profiles with the help of AWS Support.

video_content_source_url: Option<String>

The URL prefix for the master playlist for the stream, minus the asset ID. The maximum length is 512 characters.

Trait Implementations

impl PartialEq<PutPlaybackConfigurationResponse> for PutPlaybackConfigurationResponse[src]

impl Default for PutPlaybackConfigurationResponse[src]

impl Clone for PutPlaybackConfigurationResponse[src]

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

Performs copy-assignment from source. Read more

impl Debug for PutPlaybackConfigurationResponse[src]

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

Auto Trait Implementations

impl Send for PutPlaybackConfigurationResponse

impl Sync for PutPlaybackConfigurationResponse

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