@Stability(value=Stable)
public static interface CfnChannel.InputSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
It specifies the key characteristics of the inputs for this channel: the maximum bitrate, the resolution, and the codec.
This entity is at the top level in the channel.
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.medialive.*;
InputSpecificationProperty inputSpecificationProperty = InputSpecificationProperty.builder()
.codec("codec")
.maximumBitrate("maximumBitrate")
.resolution("resolution")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnChannel.InputSpecificationProperty.Builder
A builder for
CfnChannel.InputSpecificationProperty |
static class |
CfnChannel.InputSpecificationProperty.Jsii$Proxy
An implementation for
CfnChannel.InputSpecificationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnChannel.InputSpecificationProperty.Builder |
builder() |
default String |
getCodec()
The codec to include in the input specification for this channel.
|
default String |
getMaximumBitrate()
The maximum input bitrate for any input attached to this channel.
|
default String |
getResolution()
The resolution for any input attached to this channel.
|
@Stability(value=Stable) @Nullable default String getCodec()
@Stability(value=Stable) @Nullable default String getMaximumBitrate()
@Stability(value=Stable) @Nullable default String getResolution()
@Stability(value=Stable) static CfnChannel.InputSpecificationProperty.Builder builder()
Copyright © 2022. All rights reserved.