Show / Hide Table of Contents

Class GatewayConfig

Pair represents a gateway created by NAT Provider.

Inheritance
object
GatewayConfig
Implements
IGatewayConfig
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.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

string

Remarks

ExampleMetadata: fixture=_generated

GatewayId

Identity of gateway spawned by the provider.

public string GatewayId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IGatewayConfig
Back to top Generated by DocFX