interface IPAMPoolCidrReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.IPAMPoolCidrReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#IPAMPoolCidrReference |
Java | software.amazon.awscdk.services.ec2.IPAMPoolCidrReference |
Python | aws_cdk.aws_ec2.IPAMPoolCidrReference |
TypeScript | aws-cdk-lib » aws_ec2 » IPAMPoolCidrReference |
A reference to a IPAMPoolCidr resource.
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 iPAMPoolCidrReference: ec2.IPAMPoolCidrReference = {
ipamPoolCidrId: 'ipamPoolCidrId',
ipamPoolId: 'ipamPoolId',
};
Properties
| Name | Type | Description |
|---|---|---|
| ipam | string | The IpamPoolCidrId of the IPAMPoolCidr resource. |
| ipam | string | The IpamPoolId of the IPAMPoolCidr resource. |
ipamPoolCidrId
Type:
string
The IpamPoolCidrId of the IPAMPoolCidr resource.
ipamPoolId
Type:
string
The IpamPoolId of the IPAMPoolCidr resource.

.NET
Go
Java
Python
TypeScript