Skip to content

List Batch Load Tasks

timestreamwrite_list_batch_load_tasks R Documentation

Provides a list of batch load tasks, along with the name, status, when the task is resumable until, and other details

Description

Provides a list of batch load tasks, along with the name, status, when the task is resumable until, and other details. See code sample for details.

Usage

timestreamwrite_list_batch_load_tasks(NextToken, MaxResults, TaskStatus)

Arguments

NextToken

A token to specify where to start paginating. This is the NextToken from a previously truncated response.

MaxResults

The total number of items to return in the output. If the total number of items available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.

TaskStatus

Status of the batch load task.

Value

A list with the following syntax:

list(
  NextToken = "string",
  BatchLoadTasks = list(
    list(
      TaskId = "string",
      TaskStatus = "CREATED"|"IN_PROGRESS"|"FAILED"|"SUCCEEDED"|"PROGRESS_STOPPED"|"PENDING_RESUME",
      DatabaseName = "string",
      TableName = "string",
      CreationTime = as.POSIXct(
        "2015-01-01"
      ),
      LastUpdatedTime = as.POSIXct(
        "2015-01-01"
      ),
      ResumableUntil = as.POSIXct(
        "2015-01-01"
      )
    )
  )
)

Request syntax

svc$list_batch_load_tasks(
  NextToken = "string",
  MaxResults = 123,
  TaskStatus = "CREATED"|"IN_PROGRESS"|"FAILED"|"SUCCEEDED"|"PROGRESS_STOPPED"|"PENDING_RESUME"
)