Skip to content

Update Outpost Resolver

route53resolver_update_outpost_resolver R Documentation

You can use UpdateOutpostResolver to update the instance count, type, or name of a Resolver on an Outpost

Description

You can use update_outpost_resolver to update the instance count, type, or name of a Resolver on an Outpost.

Usage

route53resolver_update_outpost_resolver(Id, Name, InstanceCount,
  PreferredInstanceType)

Arguments

Id

[required] A unique string that identifies Resolver on an Outpost.

Name

Name of the Resolver on the Outpost.

InstanceCount

The Amazon EC2 instance count for a Resolver on the Outpost.

PreferredInstanceType

Amazon EC2 instance type.

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$update_outpost_resolver(
  Id = "string",
  Name = "string",
  InstanceCount = 123,
  PreferredInstanceType = "string"
)