interface ReservationResourceSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnOfferingPropsMixin.ReservationResourceSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnOfferingPropsMixin_ReservationResourceSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnOfferingPropsMixin.ReservationResourceSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnOfferingPropsMixin.ReservationResourceSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnOfferingPropsMixin » ReservationResourceSpecificationProperty |
Resource configuration (codec, resolution, bitrate, ...).
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from '@aws-cdk/cfn-property-mixins';
const reservationResourceSpecificationProperty: medialive.CfnOfferingPropsMixin.ReservationResourceSpecificationProperty = {
channelClass: 'channelClass',
codec: 'codec',
maximumBitrate: 'maximumBitrate',
maximumFramerate: 'maximumFramerate',
resolution: 'resolution',
resourceType: 'resourceType',
specialFeature: 'specialFeature',
videoQuality: 'videoQuality',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | Channel class, e.g. 'STANDARD'. |
| codec? | string | Codec, e.g. 'AVC'. |
| maximum | string | Maximum bitrate, e.g. 'MAX_20_MBPS'. |
| maximum | string | Maximum framerate, e.g. 'MAX_30_FPS' (Outputs only). |
| resolution? | string | Resolution, e.g. 'HD'. |
| resource | string | Resource type, 'INPUT', 'OUTPUT', 'MULTIPLEX', or 'CHANNEL'. |
| special | string | Special feature, e.g. 'AUDIO_NORMALIZATION' (Channels only). |
| video | string | Video quality, e.g. 'STANDARD' (Outputs only). |
channelClass?
Type:
string
(optional)
Channel class, e.g. 'STANDARD'.
codec?
Type:
string
(optional)
Codec, e.g. 'AVC'.
maximumBitrate?
Type:
string
(optional)
Maximum bitrate, e.g. 'MAX_20_MBPS'.
maximumFramerate?
Type:
string
(optional)
Maximum framerate, e.g. 'MAX_30_FPS' (Outputs only).
resolution?
Type:
string
(optional)
Resolution, e.g. 'HD'.
resourceType?
Type:
string
(optional)
Resource type, 'INPUT', 'OUTPUT', 'MULTIPLEX', or 'CHANNEL'.
specialFeature?
Type:
string
(optional)
Special feature, e.g. 'AUDIO_NORMALIZATION' (Channels only).
videoQuality?
Type:
string
(optional)
Video quality, e.g. 'STANDARD' (Outputs only).

.NET
Go
Java
Python
TypeScript