Create Worker Configuration
kafkaconnect_create_worker_configuration | R Documentation |
Creates a worker configuration using the specified properties¶
Description¶
Creates a worker configuration using the specified properties.
Usage¶
kafkaconnect_create_worker_configuration(description, name,
propertiesFileContent, tags)
Arguments¶
description |
A summary description of the worker configuration. |
name |
[required] The name of the worker configuration. |
propertiesFileContent |
[required] Base64 encoded contents of connect-distributed.properties file. |
tags |
The tags you want to attach to the worker configuration. |
Value¶
A list with the following syntax:
list(
creationTime = as.POSIXct(
"2015-01-01"
),
latestRevision = list(
creationTime = as.POSIXct(
"2015-01-01"
),
description = "string",
revision = 123
),
name = "string",
workerConfigurationArn = "string",
workerConfigurationState = "ACTIVE"|"DELETING"
)
Request syntax¶
svc$create_worker_configuration(
description = "string",
name = "string",
propertiesFileContent = "string",
tags = list(
"string"
)
)