Skip to content

Get Active Names

lightsail_get_active_names R Documentation

Returns the names of all active (not deleted) resources

Description

Returns the names of all active (not deleted) resources.

Usage

lightsail_get_active_names(pageToken)

Arguments

pageToken

The token to advance to the next page of results from your request.

To get a page token, perform an initial get_active_names request. If your results are paginated, the response will return a next page token that you can specify as the page token in a subsequent request.

Value

A list with the following syntax:

list(
  activeNames = list(
    "string"
  ),
  nextPageToken = "string"
)

Request syntax

svc$get_active_names(
  pageToken = "string"
)