List Connector Operations
kafkaconnect_list_connector_operations | R Documentation |
Lists information about a connector's operation(s)¶
Description¶
Lists information about a connector's operation(s).
Usage¶
kafkaconnect_list_connector_operations(connectorArn, maxResults,
nextToken)
Arguments¶
connectorArn |
[required] The Amazon Resource Name (ARN) of the connector for which to list operations. |
maxResults |
Maximum number of connector operations to fetch in one get request. |
nextToken |
If the response is truncated, it includes a NextToken. Send this NextToken in a subsequent request to continue listing from where it left off. |
Value¶
A list with the following syntax:
list(
connectorOperations = list(
list(
connectorOperationArn = "string",
connectorOperationType = "UPDATE_WORKER_SETTING"|"UPDATE_CONNECTOR_CONFIGURATION"|"ISOLATE_CONNECTOR"|"RESTORE_CONNECTOR",
connectorOperationState = "PENDING"|"UPDATE_IN_PROGRESS"|"UPDATE_COMPLETE"|"UPDATE_FAILED"|"ROLLBACK_IN_PROGRESS"|"ROLLBACK_FAILED"|"ROLLBACK_COMPLETE",
creationTime = as.POSIXct(
"2015-01-01"
),
endTime = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_connector_operations(
connectorArn = "string",
maxResults = 123,
nextToken = "string"
)