Skip to content

Get Outpost Resolver

route53resolver_get_outpost_resolver R Documentation

Gets information about a specified Resolver on the Outpost, such as its instance count and type, name, and the current status of the Resolver

Description

Gets information about a specified Resolver on the Outpost, such as its instance count and type, name, and the current status of the Resolver.

Usage

route53resolver_get_outpost_resolver(Id)

Arguments

Id

[required] The ID of the Resolver on the Outpost.

Value

A list with the following syntax:

list(
  OutpostResolver = 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"
  )
)

Request syntax

svc$get_outpost_resolver(
  Id = "string"
)