Skip to content

List Outpost Resolvers

route53resolver_list_outpost_resolvers R Documentation

Lists all the Resolvers on Outposts that were created using the current Amazon Web Services account

Description

Lists all the Resolvers on Outposts that were created using the current Amazon Web Services account.

Usage

route53resolver_list_outpost_resolvers(OutpostArn, MaxResults,
  NextToken)

Arguments

OutpostArn

The Amazon Resource Name (ARN) of the Outpost.

MaxResults

The maximum number of Resolvers on the Outpost that you want to return in the response to a ListOutpostResolver request. If you don't specify a value for MaxResults, the request returns up to 100 Resolvers.

NextToken

For the first ListOutpostResolver request, omit this value.

Value

A list with the following syntax:

list(
  OutpostResolvers = list(
    list(
      Arn = "string",
      CreationTime = "string",
      ModificationTime = "string",
      CreatorRequestId = "string",
      Id = "string",
      InstanceCount = 123,
      PreferredInstanceType = "string",
      Name = "string",
      Status = "CREATING"|"OPERATIONAL"|"UPDATING"|"DELETING"|"ACTION_NEEDED"|"FAILED_CREATION"|"FAILED_DELETION",
      StatusMessage = "string",
      OutpostArn = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_outpost_resolvers(
  OutpostArn = "string",
  MaxResults = 123,
  NextToken = "string"
)