interface ClusterNetworkSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnClusterPropsMixin.ClusterNetworkSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnClusterPropsMixin_ClusterNetworkSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnClusterPropsMixin.ClusterNetworkSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnClusterPropsMixin.ClusterNetworkSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnClusterPropsMixin » ClusterNetworkSettingsProperty |
On premises settings which will have the interface network mappings and default Output logical interface.
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 clusterNetworkSettingsProperty: medialive.CfnClusterPropsMixin.ClusterNetworkSettingsProperty = {
defaultRoute: 'defaultRoute',
interfaceMappings: [{
logicalInterfaceName: 'logicalInterfaceName',
networkId: 'networkId',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| default | string | Default value if the customer does not define it in channel Output API. |
| interface | IResolvable | (IResolvable | Interface)[] | Network mappings for the cluster. |
defaultRoute?
Type:
string
(optional)
Default value if the customer does not define it in channel Output API.
interfaceMappings?
Type:
IResolvable | (IResolvable | Interface)[]
(optional)
Network mappings for the cluster.

.NET
Go
Java
Python
TypeScript