interface CfnNodeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnNodeProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnNodeProps |
Java | software.amazon.awscdk.services.medialive.CfnNodeProps |
Python | aws_cdk.aws_medialive.CfnNodeProps |
TypeScript | aws-cdk-lib » aws_medialive » CfnNodeProps |
Properties for defining a CfnNode.
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-lib';
const cfnNodeProps: medialive.CfnNodeProps = {
clusterId: 'clusterId',
// the properties below are optional
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
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