[][src]Struct rusoto_mediatailor::PutPlaybackConfigurationResponse

pub struct PutPlaybackConfigurationResponse {
    pub ad_decision_server_url: Option<String>,
    pub avail_suppression: Option<AvailSuppression>,
    pub bumper: Option<Bumper>,
    pub cdn_configuration: Option<CdnConfiguration>,
    pub dash_configuration: Option<DashConfiguration>,
    pub hls_configuration: Option<HlsConfiguration>,
    pub live_pre_roll_configuration: Option<LivePreRollConfiguration>,
    pub name: Option<String>,
    pub personalization_threshold_seconds: Option<i64>,
    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.

avail_suppression: Option<AvailSuppression>

The configuration for Avail Suppression. Ad suppression can be used to turn off ad personalization in a long manifest, or if a viewer joins mid-break.

bumper: Option<Bumper>

The configuration for bumpers. Bumpers are short audio or video clips that play at the start or before the end of an ad break.

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.

live_pre_roll_configuration: Option<LivePreRollConfiguration>

The configuration for pre-roll ad insertion.

name: Option<String>

The identifier for the playback configuration.

personalization_threshold_seconds: Option<i64>

The maximum duration of underfilled ad time (in seconds) allowed in an ad break.

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 Clone for PutPlaybackConfigurationResponse[src]

impl Debug for PutPlaybackConfigurationResponse[src]

impl Default for PutPlaybackConfigurationResponse[src]

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

impl PartialEq<PutPlaybackConfigurationResponse> for PutPlaybackConfigurationResponse[src]

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