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¶
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 |
NextToken |
For the first If you have more than |
Filters |
An optional specification to return a subset of Resolver endpoints, such as all inbound Resolver endpoints. If you submit a second or subsequent
|
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"
)
)
)
)
Request syntax¶
svc$list_resolver_endpoints(
MaxResults = 123,
NextToken = "string",
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
)
)