Interface CfnOriginEndpoint.HlsManifestConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOriginEndpoint.HlsManifestConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnOriginEndpoint
@Stability(Stable)
public static interface CfnOriginEndpoint.HlsManifestConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The HLS manifest configuration associated with the origin endpoint.
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.*;
HlsManifestConfigurationProperty hlsManifestConfigurationProperty = HlsManifestConfigurationProperty.builder()
.manifestName("manifestName")
// the properties below are optional
.childManifestName("childManifestName")
.filterConfiguration(FilterConfigurationProperty.builder()
.clipStartTime("clipStartTime")
.end("end")
.manifestFilter("manifestFilter")
.start("start")
.timeDelaySeconds(123)
.build())
.manifestWindowSeconds(123)
.programDateTimeIntervalSeconds(123)
.scteHls(ScteHlsProperty.builder()
.adMarkerHls("adMarkerHls")
.build())
.startTag(StartTagProperty.builder()
.timeOffset(123)
// the properties below are optional
.precise(false)
.build())
.url("url")
.urlEncodeChildManifest(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOriginEndpoint.HlsManifestConfigurationPropertystatic final classAn implementation forCfnOriginEndpoint.HlsManifestConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the child manifest associated with the HLS manifest configuration.default ObjectFilter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest.The name of the manifest associated with the HLS manifest configuration.default NumberThe duration of the manifest window, in seconds, for the HLS manifest configuration.default NumberTheEXT-X-PROGRAM-DATE-TIMEinterval, in seconds, associated with the HLS manifest configuration.default ObjectTHE SCTE-35 HLS configuration associated with the HLS manifest configuration.default ObjectTo insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset.default StringgetUrl()The URL of the HLS manifest configuration.default ObjectWhen enabled, MediaPackage URL-encodes the query string for API requests for HLS child manifests to comply with AWS Signature Version 4 (SigV4) signature signing protocol.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getManifestName
The name of the manifest associated with the HLS manifest configuration.- See Also:
-
getChildManifestName
The name of the child manifest associated with the HLS manifest configuration.- 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.Returns union: either
IResolvableorCfnOriginEndpoint.FilterConfigurationProperty- See Also:
-
getManifestWindowSeconds
The duration of the manifest window, in seconds, for the HLS manifest configuration.- See Also:
-
getProgramDateTimeIntervalSeconds
TheEXT-X-PROGRAM-DATE-TIMEinterval, in seconds, associated with the HLS manifest configuration.- See Also:
-
getScteHls
THE SCTE-35 HLS configuration associated with the HLS manifest configuration.Returns union: either
IResolvableorCfnOriginEndpoint.ScteHlsProperty- See Also:
-
getStartTag
To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset.When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
Returns union: either
IResolvableorCfnOriginEndpoint.StartTagProperty- See Also:
-
getUrl
The URL of the HLS manifest configuration.- See Also:
-
getUrlEncodeChildManifest
When enabled, MediaPackage URL-encodes the query string for API requests for HLS child manifests to comply with AWS Signature Version 4 (SigV4) signature signing protocol.For more information, see AWS Signature Version 4 for API requests in AWS Identity and Access Management User Guide .
Returns union: either
BooleanorIResolvable- See Also:
-
builder
-