@Stability(value=Stable)
public static interface CfnPackagingConfiguration.StreamSelectionProperty
extends software.amazon.jsii.JsiiSerializable
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 |
CfnPackagingConfiguration.StreamSelectionProperty.Builder
A builder for
CfnPackagingConfiguration.StreamSelectionProperty |
static class |
CfnPackagingConfiguration.StreamSelectionProperty.Jsii$Proxy
An implementation for
CfnPackagingConfiguration.StreamSelectionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPackagingConfiguration.StreamSelectionProperty.Builder |
builder() |
default Number |
getMaxVideoBitsPerSecond()
The upper limit of the bitrates that this endpoint serves.
|
default Number |
getMinVideoBitsPerSecond()
The lower limit of the bitrates that this endpoint serves.
|
default String |
getStreamOrder()
Order in which the different video bitrates are presented to the player.
|
@Stability(value=Stable) @Nullable default 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.
@Stability(value=Stable) @Nullable default 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.
@Stability(value=Stable) @Nullable default String getStreamOrder()
Valid values: ORIGINAL , VIDEO_BITRATE_ASCENDING , VIDEO_BITRATE_DESCENDING .
@Stability(value=Stable) static CfnPackagingConfiguration.StreamSelectionProperty.Builder builder()
Copyright © 2022. All rights reserved.