interface CfnIpPoolRouteTableAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnIpPoolRouteTableAssociationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnIpPoolRouteTableAssociationProps |
Java | software.amazon.awscdk.services.ec2.CfnIpPoolRouteTableAssociationProps |
Python | aws_cdk.aws_ec2.CfnIpPoolRouteTableAssociationProps |
TypeScript | aws-cdk-lib » aws_ec2 » CfnIpPoolRouteTableAssociationProps |
Properties for defining a CfnIpPoolRouteTableAssociation.
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-lib';
const cfnIpPoolRouteTableAssociationProps: ec2.CfnIpPoolRouteTableAssociationProps = {
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
The ID of a public IPv4 address pool.
routeTableId
Type:
string
The ID of a route table.

.NET
Go
Java
Python
TypeScript