aws kafka
all
Manage an Amazon MSK (Managed Streaming for Apache Kafka) cluster. See also: `aws`.
More info →Examples (8)
Create a new MSK cluster
aws kafka create-cluster --cluster-name cluster_name --broker-node-group-info instanceType=instance_type,clientSubnets=subnet_id1 subnet_id2 ... --kafka-version version --number-of-broker-nodes numberDescribe a MSK cluster
aws kafka describe-cluster --cluster-arn cluster_arnList all MSK clusters in the current region
aws kafka list-clustersCreate a new MSK configuration
aws kafka create-configuration --name configuration_name --server-properties file://path/to/configuration_file.txtDescribe a MSK configuration
aws kafka describe-configuration --arn configuration_arnList all MSK configurations in the current region
aws kafka list-configurationsUpdate the MSK cluster configuration
aws kafka update-cluster-configuration --cluster-arn cluster_arn --configuration-info arn=configuration_arn,revision=configuration_revisionDelete the MSK cluster
aws kafka delete-cluster --cluster-arn cluster_arnmade by @shridhargupta | data from tldr-pages