Skip to content

List Staging Accounts

drs_list_staging_accounts R Documentation

Returns an array of staging accounts for existing extended source servers

Description

Returns an array of staging accounts for existing extended source servers.

Usage

drs_list_staging_accounts(maxResults, nextToken)

Arguments

maxResults

The maximum number of staging Accounts to retrieve.

nextToken

The token of the next staging Account to retrieve.

Value

A list with the following syntax:

list(
  accounts = list(
    list(
      accountID = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_staging_accounts(
  maxResults = 123,
  nextToken = "string"
)