Class CfnCluster.ClusterNetworkSettingsProperty
On premises settings which will have the interface network mappings and default Output logical interface.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.MediaLive
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCluster.ClusterNetworkSettingsProperty : CfnCluster.IClusterNetworkSettingsProperty
Syntax (vb)
Public Class CfnCluster.ClusterNetworkSettingsProperty Implements CfnCluster.IClusterNetworkSettingsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaLive;
var clusterNetworkSettingsProperty = new ClusterNetworkSettingsProperty {
DefaultRoute = "defaultRoute",
InterfaceMappings = new [] { new InterfaceMappingProperty {
LogicalInterfaceName = "logicalInterfaceName",
NetworkId = "networkId"
} }
};
Synopsis
Constructors
ClusterNetworkSettingsProperty() | On premises settings which will have the interface network mappings and default Output logical interface. |
Properties
DefaultRoute | Default value if the customer does not define it in channel Output API. |
InterfaceMappings | Network mappings for the cluster. |
Constructors
ClusterNetworkSettingsProperty()
On premises settings which will have the interface network mappings and default Output logical interface.
public ClusterNetworkSettingsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaLive;
var clusterNetworkSettingsProperty = new ClusterNetworkSettingsProperty {
DefaultRoute = "defaultRoute",
InterfaceMappings = new [] { new InterfaceMappingProperty {
LogicalInterfaceName = "logicalInterfaceName",
NetworkId = "networkId"
} }
};
Properties
DefaultRoute
Default value if the customer does not define it in channel Output API.
public string? DefaultRoute { get; set; }
Property Value
Remarks
InterfaceMappings
Network mappings for the cluster.
public object? InterfaceMappings { get; set; }