interface CfnNodeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnNodeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnNodeMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnNodeMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnNodeMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnNodeMixinProps |
Properties for CfnNodePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-node.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/cfn-property-mixins';
const cfnNodeMixinProps: medialive.CfnNodeMixinProps = {
clusterId: 'clusterId',
name: 'name',
nodeInterfaceMappings: [{
logicalInterfaceName: 'logicalInterfaceName',
networkInterfaceMode: 'networkInterfaceMode',
physicalInterfaceName: 'physicalInterfaceName',
}],
role: 'role',
sdiSourceMappings: [{
cardNumber: 123,
channelNumber: 123,
sdiSource: 'sdiSource',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The ID of the Cluster that the Node belongs to. |
| name? | string | The user-specified name of the Node. |
| node | IResolvable | (IResolvable | Node)[] | An array of interface mappings for the Node. |
| role? | string | The role of the Node in the Cluster. |
| sdi | IResolvable | (IResolvable | Sdi)[] | An array of SDI source mappings. |
| tags? | Cfn[] | A collection of key-value pairs. |
clusterId?
Type:
string
(optional)
The ID of the Cluster that the Node belongs to.
name?
Type:
string
(optional)
The user-specified name of the Node.
nodeInterfaceMappings?
Type:
IResolvable | (IResolvable | Node)[]
(optional)
An array of interface mappings for the Node.
role?
Type:
string
(optional)
The role of the Node in the Cluster.
ACTIVE means the Node is available for encoding. BACKUP means the Node is a redundant Node and might get used if an ACTIVE Node fails.
sdiSourceMappings?
Type:
IResolvable | (IResolvable | Sdi)[]
(optional)
An array of SDI source mappings.
tags?
Type:
Cfn[]
(optional)
A collection of key-value pairs.

.NET
Go
Java
Python
TypeScript