Interface CfnIPAMPrefixListResolverTargetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIPAMPrefixListResolverTargetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-27T13:11:58.125Z")
@Stability(Stable)
public interface CfnIPAMPrefixListResolverTargetProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ec2.*;
CfnIPAMPrefixListResolverTargetProps cfnIPAMPrefixListResolverTargetProps = CfnIPAMPrefixListResolverTargetProps.builder()
.ipamPrefixListResolverId("ipamPrefixListResolverId")
.prefixListId("prefixListId")
.prefixListRegion("prefixListRegion")
.trackLatestVersion(false)
// the properties below are optional
.desiredVersion(123)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIPAMPrefixListResolverTargetPropsstatic final classAn implementation forCfnIPAMPrefixListResolverTargetProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe desired version of the Prefix List Resolver that this Target should synchronize with.The Id of the IPAM Prefix List Resolver associated with this Target.The Id of the Managed Prefix List.The region that the Managed Prefix List is located in.getTags()An array of key-value pairs to apply to this resource.Indicates whether this Target automatically tracks the latest version of the Prefix List Resolver.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIpamPrefixListResolverId
The Id of the IPAM Prefix List Resolver associated with this Target.- See Also:
-
getPrefixListId
The Id of the Managed Prefix List.- See Also:
-
getPrefixListRegion
The region that the Managed Prefix List is located in.- See Also:
-
getTrackLatestVersion
Indicates whether this Target automatically tracks the latest version of the Prefix List Resolver.Returns union: either
BooleanorIResolvable- See Also:
-
getDesiredVersion
The desired version of the Prefix List Resolver that this Target should synchronize with.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
-