Show / Hide Table of Contents

Class CfnResourceGatewayProps

Properties for defining a CfnResourceGateway.

Inheritance
object
CfnResourceGatewayProps
Implements
ICfnResourceGatewayProps
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.VpcLattice
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnResourceGatewayProps : ICfnResourceGatewayProps
Syntax (vb)
Public Class CfnResourceGatewayProps Implements ICfnResourceGatewayProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.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.VpcLattice;

             var cfnResourceGatewayProps = new CfnResourceGatewayProps {
                 Name = "name",
                 SubnetIds = new [] { "subnetIds" },
                 VpcIdentifier = "vpcIdentifier",

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

Synopsis

Constructors

CfnResourceGatewayProps()

Properties for defining a CfnResourceGateway.

Properties

IpAddressType

The type of IP address used by the resource gateway.

Name

The name of the resource gateway.

SecurityGroupIds

The IDs of the security groups applied to the resource gateway.

SubnetIds

The IDs of the VPC subnets for the resource gateway.

Tags

The tags for the resource gateway.

VpcIdentifier

The ID of the VPC for the resource gateway.

Constructors

CfnResourceGatewayProps()

Properties for defining a CfnResourceGateway.

public CfnResourceGatewayProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.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.VpcLattice;

             var cfnResourceGatewayProps = new CfnResourceGatewayProps {
                 Name = "name",
                 SubnetIds = new [] { "subnetIds" },
                 VpcIdentifier = "vpcIdentifier",

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

Properties

IpAddressType

The type of IP address used by the resource gateway.

public string? IpAddressType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#cfn-vpclattice-resourcegateway-ipaddresstype

Name

The name of the resource gateway.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#cfn-vpclattice-resourcegateway-name

SecurityGroupIds

The IDs of the security groups applied to the resource gateway.

public string[]? SecurityGroupIds { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#cfn-vpclattice-resourcegateway-securitygroupids

SubnetIds

The IDs of the VPC subnets for the resource gateway.

public string[] SubnetIds { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#cfn-vpclattice-resourcegateway-subnetids

Tags

The tags for the resource gateway.

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

ICfnTag[]

Remarks

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

VpcIdentifier

The ID of the VPC for the resource gateway.

public string VpcIdentifier { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourcegateway.html#cfn-vpclattice-resourcegateway-vpcidentifier

Implements

ICfnResourceGatewayProps
Back to top Generated by DocFX