Class GatewayConfig
Pair represents a gateway created by NAT Provider.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class GatewayConfig : IGatewayConfig
Syntax (vb)
Public Class GatewayConfig Implements IGatewayConfig
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.EC2;
var gatewayConfig = new GatewayConfig {
Az = "az",
GatewayId = "gatewayId"
};
Synopsis
Constructors
| GatewayConfig() | Pair represents a gateway created by NAT Provider. |
Properties
| Az | Availability Zone. |
| GatewayId | Identity of gateway spawned by the provider. |
Constructors
GatewayConfig()
Pair represents a gateway created by NAT Provider.
public GatewayConfig()
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.EC2;
var gatewayConfig = new GatewayConfig {
Az = "az",
GatewayId = "gatewayId"
};
Properties
Az
Availability Zone.
public string Az { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
GatewayId
Identity of gateway spawned by the provider.
public string GatewayId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated