interface ClusterNetworkSettings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.ClusterNetworkSettings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#ClusterNetworkSettings |
Java | software.amazon.awscdk.services.medialive.alpha.ClusterNetworkSettings |
Python | aws_cdk.aws_medialive_alpha.ClusterNetworkSettings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป ClusterNetworkSettings |
Network settings for a MediaLive Cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
const clusterNetworkSettings: medialive_alpha.ClusterNetworkSettings = {
defaultRoute: 'defaultRoute',
interfaceMappings: [{
logicalInterfaceName: 'logicalInterfaceName',
networkId: 'networkId',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| default | string | The default route for the cluster. |
| interface | Interface[] | The interface mappings for the cluster. |
defaultRoute?
Type:
string
(optional, default: no default route)
The default route for the cluster.
interfaceMappings?
Type:
Interface[]
(optional, default: no interface mappings)
The interface mappings for the cluster.

.NET
Go
Java
Python
TypeScript (