Skip to content

List Extensible Source Servers

drs_list_extensible_source_servers R Documentation

Returns a list of source servers on a staging account that are extensible, which means that: a

Description

Returns a list of source servers on a staging account that are extensible, which means that: a. The source server is not already extended into this Account. b. The source server on the Account we’re reading from is not an extension of another source server.

Usage

drs_list_extensible_source_servers(stagingAccountID, maxResults,
  nextToken)

Arguments

stagingAccountID

[required] The Id of the staging Account to retrieve extensible source servers from.

maxResults

The maximum number of extensible source servers to retrieve.

nextToken

The token of the next extensible source server to retrieve.

Value

A list with the following syntax:

list(
  items = list(
    list(
      hostname = "string",
      arn = "string",
      tags = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_extensible_source_servers(
  stagingAccountID = "string",
  maxResults = 123,
  nextToken = "string"
)