Skip to main content

compatible_kafka_versions

Creates, updates, deletes, gets or lists a compatible_kafka_versions resource.

Overview

Namecompatible_kafka_versions
TypeResource
Idaws.kafka.compatible_kafka_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
compatible_kafka_versionsarrayA list of CompatibleKafkaVersion objects.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_compatible_kafka_versionsselectregionclusterArnGets the Apache Kafka versions to which you can update the MSK cluster.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
clusterArnstringThe Amazon Resource Name (ARN) of the cluster check.

SELECT examples

Gets the Apache Kafka versions to which you can update the MSK cluster.

SELECT
compatible_kafka_versions
FROM aws.kafka.compatible_kafka_versions
WHERE region = '{{ region }}' -- required
AND clusterArn = '{{ clusterArn }}'
;