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

DescribeConnectorResponse

import type { DescribeConnectorResponse } from "https://aws-api.deno.dev/v0.3/services/kafkaconnect.ts?docs=full";
interface DescribeConnectorResponse {
capacity?: CapacityDescription | null;
connectorArn?: string | null;
connectorConfiguration?: {
[key: string]: string | null | undefined;
}
| null;
connectorDescription?: string | null;
connectorName?: string | null;
connectorState?: ConnectorState | null;
creationTime?: Date | number | null;
currentVersion?: string | null;
kafkaCluster?: KafkaClusterDescription | null;
kafkaClusterClientAuthentication?: KafkaClusterClientAuthenticationDescription | null;
kafkaClusterEncryptionInTransit?: KafkaClusterEncryptionInTransitDescription | null;
kafkaConnectVersion?: string | null;
logDelivery?: LogDeliveryDescription | null;
plugins?: PluginDescription[] | null;
serviceExecutionRoleArn?: string | null;
workerConfiguration?: WorkerConfigurationDescription | null;
}

§Properties

§
capacity?: CapacityDescription | null
[src]

Information about the capacity of the connector, whether it is auto scaled or provisioned.

§
connectorArn?: string | null
[src]

The Amazon Resource Name (ARN) of the connector.

§
connectorConfiguration?: {
[key: string]: string | null | undefined;
}
| null
[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 | null
[src]

The name of the connector.

§
connectorState?: ConnectorState | null
[src]

The state of the connector.

§
creationTime?: Date | number | null
[src]

The time the connector was created.

§
currentVersion?: string | null
[src]

The current version of the connector.

§
kafkaCluster?: KafkaClusterDescription | null
[src]

The Apache Kafka cluster that the connector is connected to.

§
kafkaClusterClientAuthentication?: KafkaClusterClientAuthenticationDescription | null
[src]

The type of client authentication used to connect to the Apache Kafka cluster. The value is NONE when no client authentication is used.

§
kafkaClusterEncryptionInTransit?: KafkaClusterEncryptionInTransitDescription | null
[src]

Details of encryption in transit to the Apache Kafka cluster.

§
kafkaConnectVersion?: string | null
[src]

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

§
logDelivery?: LogDeliveryDescription | null
[src]

Details about delivering logs to Amazon CloudWatch Logs.

§
plugins?: PluginDescription[] | null
[src]

Specifies which plugins were used for this connector.

§
serviceExecutionRoleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the IAM role used by the connector to access Amazon Web Services resources.

§
workerConfiguration?: WorkerConfigurationDescription | null
[src]

Specifies which worker configuration was used for the connector.