Skip to content

List Custom Plugins

kafkaconnect_list_custom_plugins R Documentation

Returns a list of all of the custom plugins in this account and Region

Description

Returns a list of all of the custom plugins in this account and Region.

Usage

kafkaconnect_list_custom_plugins(maxResults, namePrefix, nextToken)

Arguments

maxResults

The maximum number of custom plugins to list in one response.

namePrefix

Lists custom plugin names that start with the specified text string.

nextToken

If the response of a ListCustomPlugins 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(
  customPlugins = list(
    list(
      creationTime = as.POSIXct(
        "2015-01-01"
      ),
      customPluginArn = "string",
      customPluginState = "CREATING"|"CREATE_FAILED"|"ACTIVE"|"UPDATING"|"UPDATE_FAILED"|"DELETING",
      description = "string",
      latestRevision = list(
        contentType = "JAR"|"ZIP",
        creationTime = as.POSIXct(
          "2015-01-01"
        ),
        description = "string",
        fileDescription = list(
          fileMd5 = "string",
          fileSize = 123
        ),
        location = list(
          s3Location = list(
            bucketArn = "string",
            fileKey = "string",
            objectVersion = "string"
          )
        ),
        revision = 123
      ),
      name = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

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