Skip to content

Deregister Targets

vpclattice_deregister_targets R Documentation

Deregisters the specified targets from the specified target group

Description

Deregisters the specified targets from the specified target group.

Usage

vpclattice_deregister_targets(targetGroupIdentifier, targets)

Arguments

targetGroupIdentifier

[required] The ID or Amazon Resource Name (ARN) of the target group.

targets

[required] The targets to deregister.

Value

A list with the following syntax:

list(
  successful = list(
    list(
      id = "string",
      port = 123
    )
  ),
  unsuccessful = list(
    list(
      failureCode = "string",
      failureMessage = "string",
      id = "string",
      port = 123
    )
  )
)

Request syntax

svc$deregister_targets(
  targetGroupIdentifier = "string",
  targets = list(
    list(
      id = "string",
      port = 123
    )
  )
)