kafka-cluster:Connect

Write

kafka-cluster:Connect is a Write access-level action in the kafka-cluster service. Grants permission to connect and authenticate to the cluster

Resource types

ARNs that kafka-cluster:Connect can be scoped to in an IAM policy.

arn:${Partition}:kafka:${Region}:${Account}:cluster/${ClusterName}/${ClusterUuid}
cluster

Condition keys

Keys you can use in the Condition block of a policy that grants kafka-cluster:Connect.

aws:ResourceTag/${TagKey} String

Filters actions based on tag key-value pairs attached to the resource. The resource tag context key will only apply to the cluster resource, not topics, groups and transactional IDs

Example IAM policy

A minimal policy that allows kafka-cluster:Connect. Replace "Resource": "*" with a specific ARN to follow least privilege.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AllowKafkaclusterConnect",
      "Effect": "Allow",
      "Action": "kafka-cluster:Connect",
      "Resource": "*"
    }
  ]
}

Related actions in kafka-cluster

View all kafka-cluster actions →