Skip to content

List on Premises Instances

codedeploy_list_on_premises_instances R Documentation

Gets a list of names for one or more on-premises instances

Description

Gets a list of names for one or more on-premises instances.

Unless otherwise specified, both registered and deregistered on-premises instance names are listed. To list only registered or deregistered on-premises instance names, use the registration status parameter.

Usage

codedeploy_list_on_premises_instances(registrationStatus, tagFilters,
  nextToken)

Arguments

registrationStatus

The registration status of the on-premises instances:

  • Deregistered: Include deregistered on-premises instances in the resulting list.

  • Registered: Include registered on-premises instances in the resulting list.

tagFilters

The on-premises instance tags that are used to restrict the on-premises instance names returned.

nextToken

An identifier returned from the previous list on-premises instances call. It can be used to return the next set of on-premises instances in the list.

Value

A list with the following syntax:

list(
  instanceNames = list(
    "string"
  ),
  nextToken = "string"
)

Request syntax

svc$list_on_premises_instances(
  registrationStatus = "Registered"|"Deregistered",
  tagFilters = list(
    list(
      Key = "string",
      Value = "string",
      Type = "KEY_ONLY"|"VALUE_ONLY"|"KEY_AND_VALUE"
    )
  ),
  nextToken = "string"
)