interface CfnIPAMPrefixListResolverMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnIPAMPrefixListResolverMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnIPAMPrefixListResolverMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnIPAMPrefixListResolverMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnIPAMPrefixListResolverMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnIPAMPrefixListResolverMixinProps |
Properties for CfnIPAMPrefixListResolverPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnIPAMPrefixListResolverMixinProps: ec2_mixins.CfnIPAMPrefixListResolverMixinProps = {
addressFamily: 'addressFamily',
description: 'description',
ipamId: 'ipamId',
rules: [{
conditions: [{
cidr: 'cidr',
ipamPoolId: 'ipamPoolId',
operation: 'operation',
resourceId: 'resourceId',
resourceOwner: 'resourceOwner',
resourceRegion: 'resourceRegion',
resourceTag: {
key: 'key',
value: 'value',
},
}],
ipamScopeId: 'ipamScopeId',
resourceType: 'resourceType',
ruleType: 'ruleType',
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
(optional)
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