Interface CfnOriginEndpoint.DashManifestConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOriginEndpoint.DashManifestConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnOriginEndpoint
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.mediapackagev2.*; DashManifestConfigurationProperty dashManifestConfigurationProperty = DashManifestConfigurationProperty.builder() .manifestName("manifestName") // the properties below are optional .baseUrls(List.of(DashBaseUrlProperty.builder() .url("url") // the properties below are optional .dvbPriority(123) .dvbWeight(123) .serviceLocation("serviceLocation") .build())) .compactness("compactness") .drmSignaling("drmSignaling") .dvbSettings(DashDvbSettingsProperty.builder() .errorMetrics(List.of(DashDvbMetricsReportingProperty.builder() .reportingUrl("reportingUrl") // the properties below are optional .probability(123) .build())) .fontDownload(DashDvbFontDownloadProperty.builder() .fontFamily("fontFamily") .mimeType("mimeType") .url("url") .build()) .build()) .filterConfiguration(FilterConfigurationProperty.builder() .clipStartTime("clipStartTime") .end("end") .manifestFilter("manifestFilter") .start("start") .timeDelaySeconds(123) .build()) .manifestWindowSeconds(123) .minBufferTimeSeconds(123) .minUpdatePeriodSeconds(123) .periodTriggers(List.of("periodTriggers")) .profiles(List.of("profiles")) .programInformation(DashProgramInformationProperty.builder() .copyright("copyright") .languageCode("languageCode") .moreInformationUrl("moreInformationUrl") .source("source") .title("title") .build()) .scteDash(ScteDashProperty.builder() .adMarkerDash("adMarkerDash") .build()) .segmentTemplateFormat("segmentTemplateFormat") .subtitleConfiguration(DashSubtitleConfigurationProperty.builder() .ttmlConfiguration(DashTtmlConfigurationProperty.builder() .ttmlProfile("ttmlProfile") .build()) .build()) .suggestedPresentationDelaySeconds(123) .utcTiming(DashUtcTimingProperty.builder() .timingMode("timingMode") .timingSource("timingSource") .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnOriginEndpoint.DashManifestConfigurationProperty
static final class
An implementation forCfnOriginEndpoint.DashManifestConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The base URLs to use for retrieving segments.default String
The layout of the DASH manifest that MediaPackage produces.default String
Determines how the DASH manifest signals the DRM content.default Object
For endpoints that use the DVB-DASH profile only.default Object
Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest.A short string that's appended to the endpoint URL.default Number
The total duration (in seconds) of the manifest's content.default Number
Minimum amount of content (in seconds) that a player must keep available in the buffer.default Number
Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest.A list of triggers that controls when AWS Elemental MediaPackage separates the MPEG-DASH manifest into multiple periods.The profile that the output is compliant with.default Object
Details about the content that you want MediaPackage to pass through in the manifest to the playback device.default Object
The SCTE configuration.default String
Determines the type of variable used in themedia
URL of theSegmentTemplate
tag in the manifest.default Object
The configuration for DASH subtitles.default Number
The amount of time (in seconds) that the player should be from the end of the manifest.default Object
Determines the type of UTC timing included in the DASH Media Presentation Description (MPD).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getManifestName
A short string that's appended to the endpoint URL.The child manifest name creates a unique path to this endpoint.
- See Also:
-
getBaseUrls
The base URLs to use for retrieving segments.- See Also:
-
getCompactness
The layout of the DASH manifest that MediaPackage produces.STANDARD
indicates a default manifest, which is compacted.NONE
indicates a full manifest.For information about compactness, see DASH manifest compactness in the AWS Elemental MediaPackage v2 User Guide .
- See Also:
-
getDrmSignaling
Determines how the DASH manifest signals the DRM content.- See Also:
-
getDvbSettings
For endpoints that use the DVB-DASH profile only.The font download and error reporting information that you want MediaPackage to pass through to the manifest.
- See Also:
-
getFilterConfiguration
Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest.- See Also:
-
getManifestWindowSeconds
The total duration (in seconds) of the manifest's content.- See Also:
-
getMinBufferTimeSeconds
Minimum amount of content (in seconds) that a player must keep available in the buffer.- See Also:
-
getMinUpdatePeriodSeconds
Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest.- See Also:
-
getPeriodTriggers
A list of triggers that controls when AWS Elemental MediaPackage separates the MPEG-DASH manifest into multiple periods.Type
ADS
to indicate that AWS Elemental MediaPackage must create periods in the output manifest that correspond to SCTE-35 ad markers in the input source. Leave this value empty to indicate that the manifest is contained all in one period. For more information about periods in the DASH manifest, see Multi-period DASH in AWS Elemental MediaPackage .- See Also:
-
getProfiles
The profile that the output is compliant with.- See Also:
-
getProgramInformation
Details about the content that you want MediaPackage to pass through in the manifest to the playback device.- See Also:
-
getScteDash
The SCTE configuration.- See Also:
-
getSegmentTemplateFormat
Determines the type of variable used in themedia
URL of theSegmentTemplate
tag in the manifest.Also specifies if segment timeline information is included in
SegmentTimeline
orSegmentTemplate
.Value description:
NUMBER_WITH_TIMELINE
- The$Number$
variable is used in themedia
URL. The value of this variable is the sequential number of the segment. A fullSegmentTimeline
object is presented in eachSegmentTemplate
.
- See Also:
-
getSubtitleConfiguration
The configuration for DASH subtitles.- See Also:
-
getSuggestedPresentationDelaySeconds
The amount of time (in seconds) that the player should be from the end of the manifest.- See Also:
-
getUtcTiming
Determines the type of UTC timing included in the DASH Media Presentation Description (MPD).- See Also:
-
builder
-