interface CfnIPAMPrefixListResolverTargetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnIPAMPrefixListResolverTargetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnIPAMPrefixListResolverTargetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnIPAMPrefixListResolverTargetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnIPAMPrefixListResolverTargetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnIPAMPrefixListResolverTargetMixinProps |
Properties for CfnIPAMPrefixListResolverTargetPropsMixin.
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 cfnIPAMPrefixListResolverTargetMixinProps: ec2.CfnIPAMPrefixListResolverTargetMixinProps = {
desiredVersion: 123,
ipamPrefixListResolverId: 'ipamPrefixListResolverId',
prefixListId: 'prefixListId',
prefixListRegion: 'prefixListRegion',
tags: [{
key: 'key',
value: 'value',
}],
trackLatestVersion: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| desired | number | The desired version of the Prefix List Resolver that this Target should synchronize with. |
| ipam | string | The Id of the IPAM Prefix List Resolver associated with this Target. |
| prefix | string | The Id of the Managed Prefix List. |
| prefix | string | The region that the Managed Prefix List is located in. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| track | boolean | IResolvable | Indicates whether this Target automatically tracks the latest version of the Prefix List Resolver. |
desiredVersion?
Type:
number
(optional)
The desired version of the Prefix List Resolver that this Target should synchronize with.
ipamPrefixListResolverId?
Type:
string
(optional)
The Id of the IPAM Prefix List Resolver associated with this Target.
prefixListId?
Type:
string
(optional)
The Id of the Managed Prefix List.
prefixListRegion?
Type:
string
(optional)
The region that the Managed Prefix List is located in.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
trackLatestVersion?
Type:
boolean | IResolvable
(optional)
Indicates whether this Target automatically tracks the latest version of the Prefix List Resolver.

.NET
Go
Java
Python
TypeScript