interface CfnWorkerConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KafkaConnect.CfnWorkerConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskafkaconnect#CfnWorkerConfigurationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.kafkaconnect.CfnWorkerConfigurationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_kafkaconnect.CfnWorkerConfigurationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kafkaconnect » 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 { aws_kafkaconnect as kafkaconnect } from '@aws-cdk/cfn-property-mixins';
const cfnWorkerConfigurationMixinProps: kafkaconnect.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