Skip to content

Modify Ipam Prefix List Resolver Target

ec2_modify_ipam_prefix_list_resolver_target R Documentation

Modifies an IPAM prefix list resolver target

Description

Modifies an IPAM prefix list resolver target. You can update version tracking settings and the desired version of the target prefix list.

Usage

ec2_modify_ipam_prefix_list_resolver_target(DryRun,
  IpamPrefixListResolverTargetId, DesiredVersion, TrackLatestVersion,
  ClientToken)

Arguments

DryRun

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

IpamPrefixListResolverTargetId

[required] The ID of the IPAM prefix list resolver target to modify.

DesiredVersion

The desired version of the prefix list to target. This allows you to pin the target to a specific version.

TrackLatestVersion

Indicates whether the resolver target should automatically track the latest version of the prefix list. When enabled, the target will always synchronize with the most current version.

Choose this for automatic updates when you want your prefix lists to stay current with infrastructure changes without manual intervention.

ClientToken

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.

Value

A list with the following syntax:

list(
  IpamPrefixListResolverTarget = list(
    IpamPrefixListResolverTargetId = "string",
    IpamPrefixListResolverTargetArn = "string",
    IpamPrefixListResolverId = "string",
    OwnerId = "string",
    PrefixListId = "string",
    PrefixListRegion = "string",
    DesiredVersion = 123,
    LastSyncedVersion = 123,
    TrackLatestVersion = TRUE|FALSE,
    StateMessage = "string",
    State = "create-in-progress"|"create-complete"|"create-failed"|"modify-in-progress"|"modify-complete"|"modify-failed"|"sync-in-progress"|"sync-complete"|"sync-failed"|"delete-in-progress"|"delete-complete"|"delete-failed"|"isolate-in-progress"|"isolate-complete"|"restore-in-progress",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Request syntax

svc$modify_ipam_prefix_list_resolver_target(
  DryRun = TRUE|FALSE,
  IpamPrefixListResolverTargetId = "string",
  DesiredVersion = 123,
  TrackLatestVersion = TRUE|FALSE,
  ClientToken = "string"
)