interface CfnIpPoolRouteTableAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnIpPoolRouteTableAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnIpPoolRouteTableAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnIpPoolRouteTableAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnIpPoolRouteTableAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnIpPoolRouteTableAssociationMixinProps |
Properties for CfnIpPoolRouteTableAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnIpPoolRouteTableAssociationMixinProps: ec2.CfnIpPoolRouteTableAssociationMixinProps = {
publicIpv4Pool: 'publicIpv4Pool',
routeTableId: 'routeTableId',
};
Properties
| Name | Type | Description |
|---|---|---|
| public | string | The ID of a public IPv4 address pool. |
| route | string | The ID of a route table. |
publicIpv4Pool?
Type:
string
(optional)
The ID of a public IPv4 address pool.
routeTableId?
Type:
string
(optional)
The ID of a route table.

.NET
Go
Java
Python
TypeScript