Skip to content

Describe Custom Plugin

kafkaconnect_describe_custom_plugin R Documentation

A summary description of the custom plugin

Description

A summary description of the custom plugin.

Usage

kafkaconnect_describe_custom_plugin(customPluginArn)

Arguments

customPluginArn

[required] Returns information about a custom plugin.

Value

A list with the following syntax:

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",
  stateDescription = list(
    code = "string",
    message = "string"
  )
)

Request syntax

svc$describe_custom_plugin(
  customPluginArn = "string"
)