Skip to main content

configuration_revisions

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

Overview

Nameconfiguration_revisions
TypeResource
Idaws.kafka.configuration_revisions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe Amazon Resource Name (ARN) of the configuration.
creation_timestring (date-time)The time when the configuration was created.
descriptionstringThe description of the configuration.
revisioninteger (int64)The revision number.
server_propertiesstring (byte)Contents of the server.properties file. When using the API, you must ensure that the contents of the file are base64 encoded. When using the AWS Management Console, the SDK, or the AWS CLI, the contents of server.properties can be in plaintext.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_configuration_revisionselectarn, revision, regionReturns a description of this revision of the configuration.
list_configuration_revisionsselectarn, regionmaxResults, nextTokenReturns a list of all the MSK configurations in this Region.

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
arnstringThe Amazon Resource Name (ARN) that uniquely identifies an MSK configuration and all of its revisions.
regionstringAWS region (default: us-east-1)
revisioninteger (int64)A string that uniquely identifies a revision of an MSK configuration.
maxResultsintegerThe maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.
nextTokenstringThe 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.

SELECT examples

Returns a description of this revision of the configuration.

SELECT
arn,
creation_time,
description,
revision,
server_properties
FROM aws.kafka.configuration_revisions
WHERE arn = '{{ arn }}' -- required
AND revision = '{{ revision }}' -- required
AND region = '{{ region }}' -- required
;