List Resolver Endpoints
| route53resolver_list_resolver_endpoints | R Documentation |
Lists all the Resolver endpoints that were created using the current Amazon Web Services account¶
Description¶
Lists all the Resolver endpoints that were created using the current Amazon Web Services account.
Usage¶
Arguments¶
MaxResultsThe maximum number of Resolver endpoints that you want to return in the response to a
list_resolver_endpointsrequest. If you don't specify a value forMaxResults, Resolver returns up to 100 Resolver endpoints.NextTokenFor the first
list_resolver_endpointsrequest, omit this value.If you have more than
MaxResultsResolver endpoints, you can submit anotherlist_resolver_endpointsrequest to get the next group of Resolver endpoints. In the next request, specify the value ofNextTokenfrom the previous response.FiltersAn optional specification to return a subset of Resolver endpoints, such as all inbound Resolver endpoints.
If you submit a second or subsequent
list_resolver_endpointsrequest and specify theNextTokenparameter, you must use the same values forFilters, 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",
OutpostArn = "string",
PreferredInstanceType = "string",
ResolverEndpointType = "IPV6"|"IPV4"|"DUALSTACK",
Protocols = list(
"DoH"|"Do53"|"DoH-FIPS"
)
)
)
)