interface InterfaceMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnClusterPropsMixin.InterfaceMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnClusterPropsMixin_InterfaceMappingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnClusterPropsMixin.InterfaceMappingProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnClusterPropsMixin.InterfaceMappingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnClusterPropsMixin » InterfaceMappingProperty |
Network mappings for the cluster.
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 interfaceMappingProperty: medialive.CfnClusterPropsMixin.InterfaceMappingProperty = {
logicalInterfaceName: 'logicalInterfaceName',
networkId: 'networkId',
};
Properties
| Name | Type | Description |
|---|---|---|
| logical | string | logical interface name, unique in the list. |
| network | string | Network Id to be associated with the logical interface name, can be duplicated in list. |
logicalInterfaceName?
Type:
string
(optional)
logical interface name, unique in the list.
networkId?
Type:
string
(optional)
Network Id to be associated with the logical interface name, can be duplicated in list.

.NET
Go
Java
Python
TypeScript