Skip to content

List Flywheels

comprehend_list_flywheels R Documentation

Gets a list of the flywheels that you have created

Description

Gets a list of the flywheels that you have created.

Usage

comprehend_list_flywheels(Filter, NextToken, MaxResults)

Arguments

Filter

Filters the flywheels that are returned. You can filter flywheels on their status, or the date and time that they were submitted. You can only set one filter at a time.

NextToken

Identifies the next page of results to return.

MaxResults

Maximum number of results to return in a response. The default is 100.

Value

A list with the following syntax:

list(
  FlywheelSummaryList = list(
    list(
      FlywheelArn = "string",
      ActiveModelArn = "string",
      DataLakeS3Uri = "string",
      Status = "CREATING"|"ACTIVE"|"UPDATING"|"DELETING"|"FAILED",
      ModelType = "DOCUMENT_CLASSIFIER"|"ENTITY_RECOGNIZER",
      Message = "string",
      CreationTime = as.POSIXct(
        "2015-01-01"
      ),
      LastModifiedTime = as.POSIXct(
        "2015-01-01"
      ),
      LatestFlywheelIteration = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_flywheels(
  Filter = list(
    Status = "CREATING"|"ACTIVE"|"UPDATING"|"DELETING"|"FAILED",
    CreationTimeAfter = as.POSIXct(
      "2015-01-01"
    ),
    CreationTimeBefore = as.POSIXct(
      "2015-01-01"
    )
  ),
  NextToken = "string",
  MaxResults = 123
)