Learn R Programming

paws.analytics (version 0.7.0)

kafkaconnect_create_connector: Creates a connector using the specified properties

Description

Creates a connector using the specified properties.

See https://www.paws-r-sdk.com/docs/kafkaconnect_create_connector/ for full documentation.

Usage

kafkaconnect_create_connector(
  capacity,
  connectorConfiguration,
  connectorDescription = NULL,
  connectorName,
  kafkaCluster,
  kafkaClusterClientAuthentication,
  kafkaClusterEncryptionInTransit,
  kafkaConnectVersion,
  logDelivery = NULL,
  plugins,
  serviceExecutionRoleArn,
  tags = NULL,
  workerConfiguration = NULL
)

Arguments

capacity

[required] Information about the capacity allocated to the connector. Exactly one of the two properties must be specified.

connectorConfiguration

[required] A map of keys to values that represent the configuration for the connector.

connectorDescription

A summary description of the connector.

connectorName

[required] The name of the connector.

kafkaCluster

[required] Specifies which Apache Kafka cluster to connect to.

kafkaClusterClientAuthentication

[required] Details of the client authentication used by the Apache Kafka cluster.

kafkaClusterEncryptionInTransit

[required] Details of encryption in transit to the Apache Kafka cluster.

kafkaConnectVersion

[required] The version of Kafka Connect. It has to be compatible with both the Apache Kafka cluster's version and the plugins.

logDelivery

Details about log delivery.

plugins

[required] Amazon MSK Connect does not currently support specifying multiple plugins as a list. To use more than one plugin for your connector, you can create a single custom plugin using a ZIP file that bundles multiple plugins together.

Specifies which plugin to use for the connector. You must specify a single-element list containing one customPlugin object.

serviceExecutionRoleArn

[required] The Amazon Resource Name (ARN) of the IAM role used by the connector to access the Amazon Web Services resources that it needs. The types of resources depends on the logic of the connector. For example, a connector that has Amazon S3 as a destination must have permissions that allow it to write to the S3 destination bucket.

tags

The tags you want to attach to the connector.

workerConfiguration

Specifies which worker configuration to use with the connector.