interface CfnMultiplexProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnMultiplexProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnMultiplexProps |
Java | software.amazon.awscdk.services.medialive.CfnMultiplexProps |
Python | aws_cdk.aws_medialive.CfnMultiplexProps |
TypeScript | aws-cdk-lib » aws_medialive » CfnMultiplexProps |
Properties for defining a CfnMultiplex
.
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 { aws_medialive as medialive } from 'aws-cdk-lib';
const cfnMultiplexProps: medialive.CfnMultiplexProps = {
availabilityZones: ['availabilityZones'],
multiplexSettings: {
transportStreamBitrate: 123,
transportStreamId: 123,
// the properties below are optional
maximumVideoBufferDelayMilliseconds: 123,
transportStreamReservedBitrate: 123,
},
name: 'name',
// the properties below are optional
destinations: [{
multiplexMediaConnectOutputDestinationSettings: {
entitlementArn: 'entitlementArn',
},
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
availability | string[] | A list of availability zones for the multiplex. |
multiplex | IResolvable | Multiplex | Configuration for a multiplex event. |
name | string | The name of the multiplex. |
destinations? | IResolvable | IResolvable | Multiplex [] | A list of the multiplex output destinations. |
tags? | Cfn [] | A collection of key-value pairs. |
availabilityZones
Type:
string[]
A list of availability zones for the multiplex.
multiplexSettings
Type:
IResolvable
|
Multiplex
Configuration for a multiplex event.
name
Type:
string
The name of the multiplex.
destinations?
Type:
IResolvable
|
IResolvable
|
Multiplex
[]
(optional)
A list of the multiplex output destinations.
tags?
Type:
Cfn
[]
(optional)
A collection of key-value pairs.