Interface CfnOriginEndpoint.FilterConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOriginEndpoint.FilterConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnOriginEndpoint
@Stability(Stable)
public static interface CfnOriginEndpoint.FilterConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.
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.*;
FilterConfigurationProperty filterConfigurationProperty = FilterConfigurationProperty.builder()
.clipStartTime("clipStartTime")
.end("end")
.manifestFilter("manifestFilter")
.start("start")
.timeDelaySeconds(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOriginEndpoint.FilterConfigurationPropertystatic final classAn implementation forCfnOriginEndpoint.FilterConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringOptionally specify the clip start time for all of your manifest egress requests.default StringgetEnd()Optionally specify the end time for all of your manifest egress requests.default StringOptionally specify one or more manifest filters for all of your manifest egress requests.default StringgetStart()Optionally specify the start time for all of your manifest egress requests.default NumberOptionally specify the time delay for all of your manifest egress requests.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClipStartTime
Optionally specify the clip start time for all of your manifest egress requests.When you include clip start time, note that you cannot use clip start time query parameters for this manifest's endpoint URL.
- See Also:
-
getEnd
Optionally specify the end time for all of your manifest egress requests.When you include end time, note that you cannot use end time query parameters for this manifest's endpoint URL.
- See Also:
-
getManifestFilter
Optionally specify one or more manifest filters for all of your manifest egress requests.When you include a manifest filter, note that you cannot use an identical manifest filter query parameter for this manifest's endpoint URL.
- See Also:
-
getStart
Optionally specify the start time for all of your manifest egress requests.When you include start time, note that you cannot use start time query parameters for this manifest's endpoint URL.
- See Also:
-
getTimeDelaySeconds
Optionally specify the time delay for all of your manifest egress requests.Enter a value that is smaller than your endpoint's startover window. When you include time delay, note that you cannot use time delay query parameters for this manifest's endpoint URL.
- See Also:
-
builder
-