Show / Hide Table of Contents

Class CfnGatewayPropsMixin.GatewayNetworkProperty

The network settings for a gateway.

Inheritance
object
CfnGatewayPropsMixin.GatewayNetworkProperty
Implements
CfnGatewayPropsMixin.IGatewayNetworkProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnGatewayPropsMixin.GatewayNetworkProperty : CfnGatewayPropsMixin.IGatewayNetworkProperty
Syntax (vb)
Public Class CfnGatewayPropsMixin.GatewayNetworkProperty Implements CfnGatewayPropsMixin.IGatewayNetworkProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-gateway-gatewaynetwork.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.Mixins.Preview.AWS.MediaConnect.Mixins;

             var gatewayNetworkProperty = new GatewayNetworkProperty {
                 CidrBlock = "cidrBlock",
                 Name = "name"
             };

Synopsis

Constructors

GatewayNetworkProperty()

The network settings for a gateway.

Properties

CidrBlock

A unique IP address range to use for this network.

Name

The name of the network.

Constructors

GatewayNetworkProperty()

The network settings for a gateway.

public GatewayNetworkProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-gateway-gatewaynetwork.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.Mixins.Preview.AWS.MediaConnect.Mixins;

             var gatewayNetworkProperty = new GatewayNetworkProperty {
                 CidrBlock = "cidrBlock",
                 Name = "name"
             };

Properties

CidrBlock

A unique IP address range to use for this network.

public string? CidrBlock { get; set; }
Property Value

string

Remarks

These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-gateway-gatewaynetwork.html#cfn-mediaconnect-gateway-gatewaynetwork-cidrblock

Name

The name of the network.

public string? Name { get; set; }
Property Value

string

Remarks

This name is used to reference the network and must be unique among networks in this gateway.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-gateway-gatewaynetwork.html#cfn-mediaconnect-gateway-gatewaynetwork-name

Implements

CfnGatewayPropsMixin.IGatewayNetworkProperty
Back to top Generated by DocFX