aws-cdk-lib.aws_mediatailor.CfnPlaybackConfiguration.DashConfigurationProperty

interface DashConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaTailor.CfnPlaybackConfiguration.DashConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmediatailor#CfnPlaybackConfiguration_DashConfigurationProperty
Javasoftware.amazon.awscdk.services.mediatailor.CfnPlaybackConfiguration.DashConfigurationProperty
Pythonaws_cdk.aws_mediatailor.CfnPlaybackConfiguration.DashConfigurationProperty
TypeScript aws-cdk-lib » aws_mediatailor » CfnPlaybackConfiguration » DashConfigurationProperty

The configuration for DASH content.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediatailor as mediatailor } from 'aws-cdk-lib';
const dashConfigurationProperty: mediatailor.CfnPlaybackConfiguration.DashConfigurationProperty = {
  manifestEndpointPrefix: 'manifestEndpointPrefix',
  mpdLocation: 'mpdLocation',
  originManifestType: 'originManifestType',
};

Properties

NameTypeDescription
manifestEndpointPrefix?stringThe URL generated by MediaTailor to initiate a playback session.
mpdLocation?stringThe setting that controls whether MediaTailor includes the Location tag in DASH manifests.
originManifestType?stringThe setting that controls whether MediaTailor handles manifests from the origin server as multi-period manifests or single-period manifests.

manifestEndpointPrefix?

Type: string (optional)

The URL generated by MediaTailor to initiate a playback session.

The session uses server-side reporting. This setting is ignored in PUT operations.


mpdLocation?

Type: string (optional)

The setting that controls whether MediaTailor includes the Location tag in DASH manifests.

MediaTailor populates the Location tag with the URL for manifest update requests, to be used by players that don't support sticky redirects. Disable this if you have CDN routing rules set up for accessing MediaTailor manifests, and you are either using client-side reporting or your players support sticky HTTP redirects. Valid values are DISABLED and EMT_DEFAULT . The EMT_DEFAULT setting enables the inclusion of the tag and is the default value.


originManifestType?

Type: string (optional)

The setting that controls whether MediaTailor handles manifests from the origin server as multi-period manifests or single-period manifests.

If your origin server produces single-period manifests, set this to SINGLE_PERIOD . The default setting is MULTI_PERIOD . For multi-period manifests, omit this setting or set it to MULTI_PERIOD .