Skip to content

List Environments

cloud9_list_environments R Documentation

Gets a list of Cloud9 development environment identifiers

Description

Gets a list of Cloud9 development environment identifiers.

Usage

cloud9_list_environments(nextToken, maxResults)

Arguments

nextToken

During a previous call, if there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a next token. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.

maxResults

The maximum number of environments to get identifiers for.

Value

A list with the following syntax:

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

Request syntax

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

Examples

## Not run: 
# 
svc$list_environments()

## End(Not run)