Skip to content

Describe Ipam Prefix List Resolvers

ec2_describe_ipam_prefix_list_resolvers R Documentation

Describes one or more IPAM prefix list resolvers

Description

Describes one or more IPAM prefix list resolvers. Use this operation to view the configuration, status, and properties of your resolvers.

Usage

ec2_describe_ipam_prefix_list_resolvers(DryRun, Filters, MaxResults,
  NextToken, IpamPrefixListResolverIds)

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.

Filters

One or more filters to limit the results.

MaxResults

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

NextToken

The token for the next page of results.

IpamPrefixListResolverIds

The IDs of the IPAM prefix list resolvers to describe. If not specified, all resolvers in your account are described.

Value

A list with the following syntax:

list(
  NextToken = "string",
  IpamPrefixListResolvers = list(
    list(
      OwnerId = "string",
      IpamPrefixListResolverId = "string",
      IpamPrefixListResolverArn = "string",
      IpamArn = "string",
      IpamRegion = "string",
      Description = "string",
      AddressFamily = "ipv4"|"ipv6",
      State = "create-in-progress"|"create-complete"|"create-failed"|"modify-in-progress"|"modify-complete"|"modify-failed"|"delete-in-progress"|"delete-complete"|"delete-failed"|"isolate-in-progress"|"isolate-complete"|"restore-in-progress",
      Tags = list(
        list(
          Key = "string",
          Value = "string"
        )
      ),
      LastVersionCreationStatus = "pending"|"success"|"failure",
      LastVersionCreationStatusMessage = "string"
    )
  )
)

Request syntax

svc$describe_ipam_prefix_list_resolvers(
  DryRun = TRUE|FALSE,
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  ),
  MaxResults = 123,
  NextToken = "string",
  IpamPrefixListResolverIds = list(
    "string"
  )
)