Show / Hide Table of Contents

Class CfnInternetGatewayProps

Properties for defining a CfnInternetGateway.

Inheritance
object
CfnInternetGatewayProps
Implements
ICfnInternetGatewayProps
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 CfnInternetGatewayProps : ICfnInternetGatewayProps
Syntax (vb)
Public Class CfnInternetGatewayProps Implements ICfnInternetGatewayProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.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.EC2;

             var cfnInternetGatewayProps = new CfnInternetGatewayProps {
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnInternetGatewayProps()

Properties for defining a CfnInternetGateway.

Properties

Tags

Any tags to assign to the internet gateway.

Constructors

CfnInternetGatewayProps()

Properties for defining a CfnInternetGateway.

public CfnInternetGatewayProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.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.EC2;

             var cfnInternetGatewayProps = new CfnInternetGatewayProps {
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Tags

Any tags to assign to the internet gateway.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-internetgateway.html#cfn-ec2-internetgateway-tags

Implements

ICfnInternetGatewayProps
Back to top Generated by DocFX