interface NodeInterfaceMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnNode.NodeInterfaceMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnNode_NodeInterfaceMappingProperty |
Java | software.amazon.awscdk.services.medialive.CfnNode.NodeInterfaceMappingProperty |
Python | aws_cdk.aws_medialive.CfnNode.NodeInterfaceMappingProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnNode » NodeInterfaceMappingProperty |
Node interface mapping.
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 nodeInterfaceMappingProperty: medialive.CfnNode.NodeInterfaceMappingProperty = {
logicalInterfaceName: 'logicalInterfaceName',
networkInterfaceMode: 'networkInterfaceMode',
physicalInterfaceName: 'physicalInterfaceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| logical | string | The logical name for this interface. |
| network | string | The network interface mode. |
| physical | string | The physical interface name. |
logicalInterfaceName?
Type:
string
(optional)
The logical name for this interface.
networkInterfaceMode?
Type:
string
(optional)
The network interface mode.
physicalInterfaceName?
Type:
string
(optional)
The physical interface name.

.NET
Go
Java
Python
TypeScript