Create Custom Plugin
kafkaconnect_create_custom_plugin | R Documentation |
Creates a custom plugin using the specified properties¶
Description¶
Creates a custom plugin using the specified properties.
Usage¶
kafkaconnect_create_custom_plugin(contentType, description, location,
name, tags)
Arguments¶
contentType |
[required] The type of the plugin file. |
description |
A summary description of the custom plugin. |
location |
[required] Information about the location of a custom plugin. |
name |
[required] The name of the custom plugin. |
tags |
The tags you want to attach to the custom plugin. |
Value¶
A list with the following syntax:
list(
customPluginArn = "string",
customPluginState = "CREATING"|"CREATE_FAILED"|"ACTIVE"|"UPDATING"|"UPDATE_FAILED"|"DELETING",
name = "string",
revision = 123
)
Request syntax¶
svc$create_custom_plugin(
contentType = "JAR"|"ZIP",
description = "string",
location = list(
s3Location = list(
bucketArn = "string",
fileKey = "string",
objectVersion = "string"
)
),
name = "string",
tags = list(
"string"
)
)