/v1/configurations/{arn}
http://kafka.{region}.amazonaws.com/v1/configurations/{arn}<p>Updates an MSK configuration.</p>
Path Parameters
<p>The Amazon Resource Name (ARN) of the configuration.</p>
Body Params
<p>The description of the configuration revision.</p>
<p>Contents of the <filename>server.properties</filename> 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 <filename>server.properties</filename> can be in plaintext.</p>
Responses
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}1curl --request PUT \2 --url 'http://kafka.{region}.amazonaws.com/v1/configurations/{arn}' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}