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 manfiest 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() .end("end") .manifestFilter("manifestFilter") .start("start") .timeDelaySeconds(123) .build()) .manifestWindowSeconds(123) .programDateTimeIntervalSeconds(123) .scteHls(ScteHlsProperty.builder() .adMarkerHls("adMarkerHls") .build()) .url("url") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnOriginEndpoint.HlsManifestConfigurationProperty
static final class
An implementation forCfnOriginEndpoint.HlsManifestConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The name of the child manifest associated with the HLS manifest configuration.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.The name of the manifest associated with the HLS manifest configuration.default Number
The duration of the manifest window, in seconds, for the HLS manifest configuration.default Number
TheEXT-X-PROGRAM-DATE-TIME
interval, in seconds, associated with the HLS manifest configuration.default Object
THE SCTE-35 HLS configuration associated with the HLS manifest configuration.default String
getUrl()
The URL of the HLS manifest configuration.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.
- See Also:
-
getManifestWindowSeconds
The duration of the manifest window, in seconds, for the HLS manifest configuration.- See Also:
-
getProgramDateTimeIntervalSeconds
TheEXT-X-PROGRAM-DATE-TIME
interval, in seconds, associated with the HLS manifest configuration.- See Also:
-
getScteHls
THE SCTE-35 HLS configuration associated with the HLS manifest configuration.- See Also:
-
getUrl
The URL of the HLS manifest configuration.- See Also:
-
builder
-