Skip to content

List Worker Configurations

kafkaconnect_list_worker_configurations R Documentation

Returns a list of all of the worker configurations in this account and Region

Description

Returns a list of all of the worker configurations in this account and Region.

Usage

kafkaconnect_list_worker_configurations(maxResults, namePrefix,
  nextToken)

Arguments

maxResults

The maximum number of worker configurations to list in one response.

namePrefix

Lists worker configuration names that start with the specified text string.

nextToken

If the response of a ListWorkerConfigurations operation is truncated, it will include a NextToken. Send this NextToken in a subsequent request to continue listing from where the previous operation left off.

Value

A list with the following syntax:

list(
  nextToken = "string",
  workerConfigurations = list(
    list(
      creationTime = as.POSIXct(
        "2015-01-01"
      ),
      description = "string",
      latestRevision = list(
        creationTime = as.POSIXct(
          "2015-01-01"
        ),
        description = "string",
        revision = 123
      ),
      name = "string",
      workerConfigurationArn = "string",
      workerConfigurationState = "ACTIVE"|"DELETING"
    )
  )
)

Request syntax

svc$list_worker_configurations(
  maxResults = 123,
  namePrefix = "string",
  nextToken = "string"
)