Skip to content

Get Resolver Endpoint

route53resolver_get_resolver_endpoint R Documentation

Gets information about a specified Resolver endpoint, such as whether it's an inbound or an outbound Resolver endpoint, and the current status of the endpoint

Description

Gets information about a specified Resolver endpoint, such as whether it's an inbound or an outbound Resolver endpoint, and the current status of the endpoint.

Usage

route53resolver_get_resolver_endpoint(ResolverEndpointId)

Arguments

ResolverEndpointId

[required] The ID of the Resolver endpoint that you want to get information about.

Value

A list with the following syntax:

list(
  ResolverEndpoint = 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$get_resolver_endpoint(
  ResolverEndpointId = "string"
)