CfnWorkerConfigurationMixinProps

class aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnWorkerConfigurationMixinProps(*, description=None, name=None, properties_file_content=None, tags=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-workerconfiguration.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-workerconfiguration.html#cfn-kafkaconnect-workerconfiguration-description

name

The name of the worker configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-workerconfiguration.html#cfn-kafkaconnect-workerconfiguration-name

properties_file_content

Base64 encoded contents of the connect-distributed.properties file.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-workerconfiguration.html#cfn-kafkaconnect-workerconfiguration-propertiesfilecontent

tags

A collection of tags associated with a resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-workerconfiguration.html#cfn-kafkaconnect-workerconfiguration-tags