interface CfnMultiplexMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnMultiplexMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnMultiplexMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnMultiplexMixinProps |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnMultiplexMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnMultiplexMixinProps |
Properties for CfnMultiplexPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplex.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const cfnMultiplexMixinProps: medialive_mixins.CfnMultiplexMixinProps = {
availabilityZones: ['availabilityZones'],
destinations: [{
multiplexMediaConnectOutputDestinationSettings: {
entitlementArn: 'entitlementArn',
},
}],
multiplexSettings: {
maximumVideoBufferDelayMilliseconds: 123,
transportStreamBitrate: 123,
transportStreamId: 123,
transportStreamReservedBitrate: 123,
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string[] | A list of availability zones for the multiplex. |
| destinations? | IResolvable | (IResolvable | Multiplex)[] | A list of the multiplex output destinations. |
| multiplex | IResolvable | Multiplex | Configuration for a multiplex event. |
| name? | string | The name of the multiplex. |
| tags? | Cfn[] | A collection of key-value pairs. |
availabilityZones?
Type:
string[]
(optional)
A list of availability zones for the multiplex.
destinations?
Type:
IResolvable | (IResolvable | Multiplex)[]
(optional)
A list of the multiplex output destinations.
multiplexSettings?
Type:
IResolvable | Multiplex
(optional)
Configuration for a multiplex event.
name?
Type:
string
(optional)
The name of the multiplex.
tags?
Type:
Cfn[]
(optional)
A collection of key-value pairs.

.NET
Go
Java
Python
TypeScript