Interface CfnOriginEndpoint.StartTagProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnOriginEndpoint.StartTagProperty.Jsii$Proxy
Enclosing class:
CfnOriginEndpoint

@Stability(Stable) public static interface CfnOriginEndpoint.StartTagProperty extends software.amazon.jsii.JsiiSerializable
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.

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.*;
 StartTagProperty startTagProperty = StartTagProperty.builder()
         .timeOffset(123)
         // the properties below are optional
         .precise(false)
         .build();
 

See Also: