compatible_kafka_versions
Creates, updates, deletes, gets or lists a compatible_kafka_versions resource.
Overview
| Name | compatible_kafka_versions |
| Type | Resource |
| Id | aws.kafka.compatible_kafka_versions |
Fields
The following fields are returned by SELECT queries:
- get_compatible_kafka_versions
| Name | Datatype | Description |
|---|---|---|
compatible_kafka_versions | array | A list of CompatibleKafkaVersion objects. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_compatible_kafka_versions | select | region | clusterArn | Gets 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
clusterArn | string | The Amazon Resource Name (ARN) of the cluster check. |
SELECT examples
- get_compatible_kafka_versions
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 }}'
;