Skip to content

List Kafka Versions

kafka_list_kafka_versions R Documentation

Returns a list of Apache Kafka versions

Description

Returns a list of Apache Kafka versions.

Usage

kafka_list_kafka_versions(MaxResults, NextToken)

Arguments

MaxResults

The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.

NextToken

The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response. To get the next batch, provide this token in your next request.

Value

A list with the following syntax:

list(
  KafkaVersions = list(
    list(
      Version = "string",
      Status = "ACTIVE"|"DEPRECATED"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_kafka_versions(
  MaxResults = 123,
  NextToken = "string"
)