Learn R Programming

paws.networking (version 0.1.11)

route53resolver_list_resolver_endpoints: Lists all the Resolver endpoints that were created using the current AWS account

Description

Lists all the Resolver endpoints that were created using the current AWS account.

Usage

route53resolver_list_resolver_endpoints(MaxResults, NextToken, Filters)

Arguments

MaxResults

The maximum number of Resolver endpoints that you want to return in the response to a list_resolver_endpoints request. If you don't specify a value for MaxResults, Resolver returns up to 100 Resolver endpoints.

NextToken

For the first list_resolver_endpoints request, omit this value.

If you have more than MaxResults Resolver endpoints, you can submit another list_resolver_endpoints request to get the next group of Resolver endpoints. In the next request, specify the value of NextToken from the previous response.

Filters

An optional specification to return a subset of Resolver endpoints, such as all inbound Resolver endpoints.

If you submit a second or subsequent list_resolver_endpoints request and specify the NextToken parameter, you must use the same values for Filters, if any, as in the previous request.

Value

A list with the following syntax:

list(
  NextToken = "string",
  MaxResults = 123,
  ResolverEndpoints = list(
    list(
      Id = "string",
      CreatorRequestId = "string",
      Arn = "string",
      Name = "string",
      SecurityGroupIds = list(
        "string"
      ),
      Direction = "INBOUND"|"OUTBOUND",
      IpAddressCount = 123,
      HostVPCId = "string",
      Status = "CREATING"|"OPERATIONAL"|"UPDATING"|"AUTO_RECOVERING"|"ACTION_NEEDED"|"DELETING",
      StatusMessage = "string",
      CreationTime = "string",
      ModificationTime = "string"
    )
  )
)

Request syntax

svc$list_resolver_endpoints(
  MaxResults = 123,
  NextToken = "string",
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  )
)