interface CfnResourceGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VpcLattice.Mixins.CfnResourceGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvpclattice/mixins#CfnResourceGatewayMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.vpclattice.mixins.CfnResourceGatewayMixinProps |
Python | aws_cdk.mixins_preview.aws_vpclattice.mixins.CfnResourceGatewayMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_vpclattice » mixins » CfnResourceGatewayMixinProps |
Properties for CfnResourceGatewayPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as vpclattice_mixins } from '@aws-cdk/mixins-preview/aws-vpclattice';
const cfnResourceGatewayMixinProps: vpclattice_mixins.CfnResourceGatewayMixinProps = {
ipAddressType: 'ipAddressType',
ipv4AddressesPerEni: 123,
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. |
| ipv4 | number | The number of IPv4 addresses in each ENI for 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.
ipv4AddressesPerEni?
Type:
number
(optional)
The number of IPv4 addresses in each ENI for 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.

.NET
Go
Java
Python
TypeScript