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()
         .end("end")
         .manifestFilter("manifestFilter")
         .start("start")
         .timeDelaySeconds(123)
         .build();
 

See Also: