Show / Hide Table of Contents

Interface ICfnEgressOnlyInternetGatewayProps

Properties for defining a CfnEgressOnlyInternetGateway.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnEgressOnlyInternetGatewayProps
Syntax (vb)
Public Interface ICfnEgressOnlyInternetGatewayProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.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 cfnEgressOnlyInternetGatewayProps = new CfnEgressOnlyInternetGatewayProps {
                 VpcId = "vpcId",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Tags

The tags assigned to the egress-only internet gateway.

VpcId

The ID of the VPC for which to create the egress-only internet gateway.

Properties

Tags

The tags assigned to the egress-only internet gateway.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

VpcId

The ID of the VPC for which to create the egress-only internet gateway.

object VpcId { get; }
Property Value

object

Remarks

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

Type union: either string or IVPCRef

Back to top Generated by DocFX