interface CfnWorkerConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins.CfnWorkerConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskafkaconnect/mixins#CfnWorkerConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.kafkaconnect.mixins.CfnWorkerConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnWorkerConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_kafkaconnect » mixins » CfnWorkerConfigurationMixinProps |
Properties for CfnWorkerConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kafkaconnect_mixins } from '@aws-cdk/mixins-preview/aws-kafkaconnect';
const cfnWorkerConfigurationMixinProps: kafkaconnect_mixins.CfnWorkerConfigurationMixinProps = {
description: 'description',
name: 'name',
propertiesFileContent: 'propertiesFileContent',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of a worker configuration. |
| name? | string | The name of the worker configuration. |
| properties | string | Base64 encoded contents of the connect-distributed.properties file. |
| tags? | Cfn[] | A collection of tags associated with a resource. |
description?
Type:
string
(optional)
The description of a worker configuration.
name?
Type:
string
(optional)
The name of the worker configuration.
propertiesFileContent?
Type:
string
(optional)
Base64 encoded contents of the connect-distributed.properties file.
tags?
Type:
Cfn[]
(optional)
A collection of tags associated with a resource.

.NET
Go
Java
Python
TypeScript