Skip to content

Update Configuration

kafka_update_configuration R Documentation

Updates an MSK configuration

Description

Updates an MSK configuration.

Usage

kafka_update_configuration(Arn, Description, ServerProperties)

Arguments

Arn

[required] The Amazon Resource Name (ARN) of the configuration.

Description

The description of the configuration revision.

ServerProperties

[required] 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.

Value

A list with the following syntax:

list(
  Arn = "string",
  LatestRevision = list(
    CreationTime = as.POSIXct(
      "2015-01-01"
    ),
    Description = "string",
    Revision = 123
  )
)

Request syntax

svc$update_configuration(
  Arn = "string",
  Description = "string",
  ServerProperties = raw
)