Learn R Programming

paws.networking (version 0.1.11)

route53resolver_update_resolver_endpoint: Updates the name of an inbound or an outbound Resolver endpoint

Description

Updates the name of an inbound or an outbound Resolver endpoint.

Usage

route53resolver_update_resolver_endpoint(ResolverEndpointId, Name)

Arguments

ResolverEndpointId

[required] The ID of the Resolver endpoint that you want to update.

Name

The name of the Resolver endpoint that you want to update.

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"
  )
)

Request syntax

svc$update_resolver_endpoint(
  ResolverEndpointId = "string",
  Name = "string"
)