interface CfnResourceGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.VpcLattice.CfnResourceGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsvpclattice#CfnResourceGatewayMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.vpclattice.CfnResourceGatewayMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_vpclattice.CfnResourceGatewayMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_vpclattice » 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 { aws_vpclattice as vpclattice } from '@aws-cdk/cfn-property-mixins';
const cfnResourceGatewayMixinProps: vpclattice.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 | ISecurity)[] | The IDs of the security groups applied to the resource gateway. |
| subnet | (string | ISubnet)[] | 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 | ISecurity)[]
(optional)
The IDs of the security groups applied to the resource gateway.
subnetIds?
Type:
(string | ISubnet)[]
(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