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¶
Arguments¶
maxResultsThe maximum number of worker configurations to list in one response.
namePrefixLists worker configuration names that start with the specified text string.
nextTokenIf 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"
)
)
)