public static interface CfnChannel.InputSpecificationProperty
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 java.lang.String |
getCodec()
The codec to include in the input specification for this channel.
|
default java.lang.String |
getMaximumBitrate()
The maximum input bitrate for any input attached to this channel.
|
default java.lang.String |
getResolution()
The resolution for any input attached to this channel.
|
default java.lang.String getCodec()
default java.lang.String getMaximumBitrate()
default java.lang.String getResolution()
static CfnChannel.InputSpecificationProperty.Builder builder()