interface CfnIPAMPrefixListResolverProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnIPAMPrefixListResolverProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnIPAMPrefixListResolverProps |
Java | software.amazon.awscdk.services.ec2.CfnIPAMPrefixListResolverProps |
Python | aws_cdk.aws_ec2.CfnIPAMPrefixListResolverProps |
TypeScript | aws-cdk-lib » aws_ec2 » CfnIPAMPrefixListResolverProps |
Properties for defining a CfnIPAMPrefixListResolver.
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 cfnIPAMPrefixListResolverProps: ec2.CfnIPAMPrefixListResolverProps = {
addressFamily: 'addressFamily',
// the properties below are optional
description: 'description',
ipamId: 'ipamId',
rules: [{
ruleType: 'ruleType',
// the properties below are optional
conditions: [{
operation: 'operation',
// the properties below are optional
cidr: 'cidr',
ipamPoolId: 'ipamPoolId',
resourceId: 'resourceId',
resourceOwner: 'resourceOwner',
resourceRegion: 'resourceRegion',
resourceTag: {
key: 'key',
value: 'value',
},
}],
ipamScopeId: 'ipamScopeId',
resourceType: 'resourceType',
staticCidr: 'staticCidr',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| address | string | The address family of the address space in this Prefix List Resolver. |
| description? | string | |
| ipam | string | The Id of the IPAM this Prefix List Resolver is a part of. |
| rules? | IResolvable | (IResolvable | Ipam)[] | Rules define the business logic for selecting CIDRs from IPAM. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
addressFamily
Type:
string
The address family of the address space in this Prefix List Resolver.
Either IPv4 or IPv6.
description?
Type:
string
(optional)
ipamId?
Type:
string
(optional)
The Id of the IPAM this Prefix List Resolver is a part of.
rules?
Type:
IResolvable | (IResolvable | Ipam)[]
(optional)
Rules define the business logic for selecting CIDRs from IPAM.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript