Skip to content

List Fleets

worklink_list_fleets R Documentation

Retrieves a list of fleets for the current account and Region

Description

Retrieves a list of fleets for the current account and Region.

Usage

worklink_list_fleets(NextToken, MaxResults)

Arguments

NextToken

The pagination token used to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.

MaxResults

The maximum number of results to be included in the next page.

Value

A list with the following syntax:

list(
  FleetSummaryList = list(
    list(
      FleetArn = "string",
      CreatedTime = as.POSIXct(
        "2015-01-01"
      ),
      LastUpdatedTime = as.POSIXct(
        "2015-01-01"
      ),
      FleetName = "string",
      DisplayName = "string",
      CompanyCode = "string",
      FleetStatus = "CREATING"|"ACTIVE"|"DELETING"|"DELETED"|"FAILED_TO_CREATE"|"FAILED_TO_DELETE",
      Tags = list(
        "string"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_fleets(
  NextToken = "string",
  MaxResults = 123
)