interface CfnResourceGatewayProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.VpcLattice.CfnResourceGatewayProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsvpclattice#CfnResourceGatewayProps |
Java | software.amazon.awscdk.services.vpclattice.CfnResourceGatewayProps |
Python | aws_cdk.aws_vpclattice.CfnResourceGatewayProps |
TypeScript | aws-cdk-lib » aws_vpclattice » CfnResourceGatewayProps |
Properties for defining a CfnResourceGateway.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_vpclattice as vpclattice } from 'aws-cdk-lib';
const cfnResourceGatewayProps: vpclattice.CfnResourceGatewayProps = {
name: 'name',
subnetIds: ['subnetIds'],
vpcIdentifier: 'vpcIdentifier',
// the properties below are optional
ipAddressType: 'ipAddressType',
ipv4AddressesPerEni: 123,
securityGroupIds: ['securityGroupIds'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the resource gateway. |
| subnet | string[] | The IDs of the VPC subnets for the resource gateway. |
| vpc | string | The ID of the VPC for the resource gateway. |
| ip | string | The type of IP address used by the resource gateway. |
| ipv4 | number | The number of IPv4 addresses in each ENI for the resource gateway. |
| security | string[] | The IDs of the security groups applied to the resource gateway. |
| tags? | Cfn[] | The tags for the resource gateway. |
name
Type:
string
The name of the resource gateway.
subnetIds
Type:
string[]
The IDs of the VPC subnets for the resource gateway.
vpcIdentifier
Type:
string
The ID of the VPC for the resource gateway.
ipAddressType?
Type:
string
(optional)
The type of IP address used by the resource gateway.
ipv4AddressesPerEni?
Type:
number
(optional)
The number of IPv4 addresses in each ENI for the resource gateway.
securityGroupIds?
Type:
string[]
(optional)
The IDs of the security groups applied to the resource gateway.
tags?
Type:
Cfn[]
(optional)
The tags for the resource gateway.

.NET
Go
Java
Python
TypeScript