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

.NET
Go
Java
Python
TypeScript