Show / Hide Table of Contents

Class CfnCluster.ClusterNetworkSettingsProperty

On premises settings which will have the interface network mappings and default Output logical interface.

Inheritance
object
CfnCluster.ClusterNetworkSettingsProperty
Implements
CfnCluster.IClusterNetworkSettingsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cluster-clusternetworksettings.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cluster-clusternetworksettings.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cluster-clusternetworksettings.html#cfn-medialive-cluster-clusternetworksettings-defaultroute

InterfaceMappings

Network mappings for the cluster.

public object? InterfaceMappings { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-cluster-clusternetworksettings.html#cfn-medialive-cluster-clusternetworksettings-interfacemappings

Implements

CfnCluster.IClusterNetworkSettingsProperty
Back to top Generated by DocFX