Class CfnResourceGatewayProps
Properties for defining a CfnResourceGateway
.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.VpcLattice
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnResourceGatewayProps : ICfnResourceGatewayProps
Syntax (vb)
Public Class CfnResourceGatewayProps Implements ICfnResourceGatewayProps
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.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 |
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
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
Remarks
Name
The name of the resource gateway.
public string Name { get; set; }
Property Value
Remarks
SecurityGroupIds
The IDs of the security groups applied to the resource gateway.
public string[]? SecurityGroupIds { get; set; }
Property Value
string[]
Remarks
SubnetIds
The IDs of the VPC subnets for the resource gateway.
public string[] SubnetIds { get; set; }
Property Value
string[]
Remarks
Tags
The tags for the resource gateway.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
VpcIdentifier
The ID of the VPC for the resource gateway.
public string VpcIdentifier { get; set; }