interface CfnResourceGatewayProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.VpcLattice.CfnResourceGatewayProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsvpclattice#CfnResourceGatewayProps |
![]() | software.amazon.awscdk.services.vpclattice.CfnResourceGatewayProps |
![]() | aws_cdk.aws_vpclattice.CfnResourceGatewayProps |
![]() | 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 = {
ipAddressType: 'ipAddressType',
name: 'name',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
tags: [{
key: 'key',
value: 'value',
}],
vpcIdentifier: 'vpcIdentifier',
};
Properties
Name | Type | Description |
---|---|---|
ip | string | The type of IP address used by the resource gateway. |
name? | string | The name of the resource gateway. |
security | string[] | The IDs of the security groups applied to the resource gateway. |
subnet | string[] | The IDs of the VPC subnets for the resource gateway. |
tags? | Cfn [] | The tags for the resource gateway. |
vpc | string | The ID of the VPC for the resource gateway. |
ipAddressType?
Type:
string
(optional)
The type of IP address used by the resource gateway.
name?
Type:
string
(optional)
The name of the resource gateway.
securityGroupIds?
Type:
string[]
(optional)
The IDs of the security groups applied to the resource gateway.
subnetIds?
Type:
string[]
(optional)
The IDs of the VPC subnets for the resource gateway.
tags?
Type:
Cfn
[]
(optional)
The tags for the resource gateway.
vpcIdentifier?
Type:
string
(optional)
The ID of the VPC for the resource gateway.