Class CfnGatewayPropsMixin.GatewayNetworkProperty
The network settings for a gateway.
Implements
Inherited Members
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
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
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
Remarks
These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
Name
The name of the network.
public string? Name { get; set; }
Property Value
Remarks
This name is used to reference the network and must be unique among networks in this gateway.