CfnWorkerConfigurationMixinProps
- class aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnWorkerConfigurationMixinProps(*, description=None, name=None, properties_file_content=None, tags=None)
Bases:
objectProperties for CfnWorkerConfigurationPropsMixin.
- Parameters:
description (
Optional[str]) – The description of a worker configuration.name (
Optional[str]) – The name of the worker configuration.properties_file_content (
Optional[str]) – Base64 encoded contents of the connect-distributed.properties file.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A collection of tags associated with a resource.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_kafkaconnect import mixins as kafkaconnect_mixins cfn_worker_configuration_mixin_props = kafkaconnect_mixins.CfnWorkerConfigurationMixinProps( description="description", name="name", properties_file_content="propertiesFileContent", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The description of a worker configuration.
- name
The name of the worker configuration.
- properties_file_content
Base64 encoded contents of the connect-distributed.properties file.
- tags
A collection of tags associated with a resource.