interface InterfaceMappingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnClusterPropsMixin.InterfaceMappingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnClusterPropsMixin_InterfaceMappingProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnClusterPropsMixin.InterfaceMappingProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnClusterPropsMixin.InterfaceMappingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » 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 { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const interfaceMappingProperty: medialive_mixins.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