interface WorkerConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KafkaConnect.CfnConnectorPropsMixin.WorkerConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskafkaconnect#CfnConnectorPropsMixin_WorkerConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kafkaconnect.CfnConnectorPropsMixin.WorkerConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_kafkaconnect.CfnConnectorPropsMixin.WorkerConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kafkaconnect » CfnConnectorPropsMixin » WorkerConfigurationProperty |
The configuration of the workers, which are the processes that run the connector logic.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kafkaconnect as kafkaconnect } from '@aws-cdk/cfn-property-mixins';
const workerConfigurationProperty: kafkaconnect.CfnConnectorPropsMixin.WorkerConfigurationProperty = {
revision: 123,
workerConfigurationArn: 'workerConfigurationArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| revision? | number | The revision of the worker configuration. |
| worker | string | The Amazon Resource Name (ARN) of the worker configuration. |
revision?
Type:
number
(optional)
The revision of the worker configuration.
workerConfigurationArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the worker configuration.

.NET
Go
Java
Python
TypeScript