AWS Fundamentals Logo
AWS Fundamentals
AWS::KafkaConnect::WorkerConfiguration

KafkaConnect WorkerConfiguration

The configuration of the workers, which are the processes that run the connector logic.

Properties

4 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
Name
string
RequiredCreate-only
PropertiesFileContent
string
RequiredCreate-only
Description
string
Create-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
RevisionintegerThe description of a revision of the worker configuration.
WorkerConfigurationArnstringThe Amazon Resource Name (ARN) of the custom configuration.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::KafkaConnect::WorkerConfiguration

Resources:
  MyResource:
    Type: AWS::KafkaConnect::WorkerConfiguration
    Properties:
      Name: "my-name"
      PropertiesFileContent: "value"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

kafkaconnect:DescribeWorkerConfigurationkafkaconnect:CreateWorkerConfigurationkafkaconnect:TagResourcekafkaconnect:ListTagsForResource

read

kafkaconnect:DescribeWorkerConfigurationkafkaconnect:ListTagsForResource

update

kafkaconnect:DescribeWorkerConfigurationkafkaconnect:ListTagsForResourcekafkaconnect:TagResourcekafkaconnect:UntagResource

delete

kafkaconnect:DescribeWorkerConfigurationkafkaconnect:DeleteWorkerConfiguration

list

kafkaconnect:ListWorkerConfigurations

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceKafkaConnect
Properties6
Required2
TaggingSupported
Primary IDWorkerConfigurationArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

NameDescriptionPropertiesFileContent

Related Resources

External Links