public static interface CfnOriginEndpoint.StreamSelectionProperty
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.mediapackage.*; StreamSelectionProperty streamSelectionProperty = StreamSelectionProperty.builder() .maxVideoBitsPerSecond(123) .minVideoBitsPerSecond(123) .streamOrder("streamOrder") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnOriginEndpoint.StreamSelectionProperty.Builder
A builder for
CfnOriginEndpoint.StreamSelectionProperty |
static class |
CfnOriginEndpoint.StreamSelectionProperty.Jsii$Proxy
An implementation for
CfnOriginEndpoint.StreamSelectionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnOriginEndpoint.StreamSelectionProperty.Builder |
builder() |
default java.lang.Number |
getMaxVideoBitsPerSecond()
The upper limit of the bitrates that this endpoint serves.
|
default java.lang.Number |
getMinVideoBitsPerSecond()
The lower limit of the bitrates that this endpoint serves.
|
default java.lang.String |
getStreamOrder()
Order in which the different video bitrates are presented to the player.
|
default java.lang.Number getMaxVideoBitsPerSecond()
If the video track exceeds this threshold, then AWS Elemental MediaPackage excludes it from output. If you don't specify a value, it defaults to 2147483647 bits per second.
default java.lang.Number getMinVideoBitsPerSecond()
If the video track is below this threshold, then AWS Elemental MediaPackage excludes it from output. If you don't specify a value, it defaults to 0 bits per second.
default java.lang.String getStreamOrder()
Valid values: ORIGINAL
, VIDEO_BITRATE_ASCENDING
, VIDEO_BITRATE_DESCENDING
.
static CfnOriginEndpoint.StreamSelectionProperty.Builder builder()