Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateConnectorRequest

import type { CreateConnectorRequest } from "https://aws-api.deno.dev/v0.3/services/kafkaconnect.ts?docs=full";
interface CreateConnectorRequest {
capacity: Capacity;
connectorConfiguration: {
[key: string]: string | null | undefined;
}
;
connectorDescription?: string | null;
connectorName: string;
kafkaCluster: KafkaCluster;
kafkaClusterClientAuthentication: KafkaClusterClientAuthentication;
kafkaClusterEncryptionInTransit: KafkaClusterEncryptionInTransit;
kafkaConnectVersion: string;
logDelivery?: LogDelivery | null;
plugins: Plugin[];
serviceExecutionRoleArn: string;
workerConfiguration?: WorkerConfiguration | null;
}

§Properties

§
capacity: Capacity
[src]

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

§
connectorConfiguration: {
[key: string]: string | null | undefined;
}
[src]

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

§
connectorDescription?: string | null
[src]

A summary description of the connector.

§
connectorName: string
[src]

The name of the connector.

§
kafkaCluster: KafkaCluster
[src]

Specifies which Apache Kafka cluster to connect to.

§
kafkaClusterClientAuthentication: KafkaClusterClientAuthentication
[src]

Details of the client authentication used by the Apache Kafka cluster.

§
kafkaClusterEncryptionInTransit: KafkaClusterEncryptionInTransit
[src]

Details of encryption in transit to the Apache Kafka cluster.

§
kafkaConnectVersion: string
[src]

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

§
logDelivery?: LogDelivery | null
[src]

Details about log delivery.

§
plugins: Plugin[]
[src]

Specifies which plugins to use for the connector.

§
serviceExecutionRoleArn: string
[src]

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.

§
workerConfiguration?: WorkerConfiguration | null
[src]

Specifies which worker configuration to use with the connector.