Skip to content

Batch Disassociate Scram Secret

kafka_batch_disassociate_scram_secret R Documentation

Disassociates one or more Scram Secrets from an Amazon MSK cluster

Description

Disassociates one or more Scram Secrets from an Amazon MSK cluster.

Usage

kafka_batch_disassociate_scram_secret(ClusterArn, SecretArnList)

Arguments

ClusterArn

[required] The Amazon Resource Name (ARN) of the cluster to be updated.

SecretArnList

[required] List of AWS Secrets Manager secret ARNs.

Value

A list with the following syntax:

list(
  ClusterArn = "string",
  UnprocessedScramSecrets = list(
    list(
      ErrorCode = "string",
      ErrorMessage = "string",
      SecretArn = "string"
    )
  )
)

Request syntax

svc$batch_disassociate_scram_secret(
  ClusterArn = "string",
  SecretArnList = list(
    "string"
  )
)