interface CfnWorkerConfigurationProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.KafkaConnect.CfnWorkerConfigurationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskafkaconnect#CfnWorkerConfigurationProps |
Java | software.amazon.awscdk.services.kafkaconnect.CfnWorkerConfigurationProps |
Python | aws_cdk.aws_kafkaconnect.CfnWorkerConfigurationProps |
TypeScript | aws-cdk-lib » aws_kafkaconnect » CfnWorkerConfigurationProps |
Properties for defining a CfnWorkerConfiguration
.
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-lib';
const cfnWorkerConfigurationProps: kafkaconnect.CfnWorkerConfigurationProps = {
name: 'name',
propertiesFileContent: 'propertiesFileContent',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name of the worker configuration. |
properties | string | Base64 encoded contents of the connect-distributed.properties file. |
description? | string | The description of a worker configuration. |
tags? | Cfn [] | A collection of tags associated with a resource. |
name
Type:
string
The name of the worker configuration.
propertiesFileContent
Type:
string
Base64 encoded contents of the connect-distributed.properties file.
description?
Type:
string
(optional)
The description of a worker configuration.
tags?
Type:
Cfn
[]
(optional)
A collection of tags associated with a resource.