List Scram Secrets
kafka_list_scram_secrets | R Documentation |
Returns a list of the Scram Secrets associated with an Amazon MSK cluster¶
Description¶
Returns a list of the Scram Secrets associated with an Amazon MSK cluster.
Usage¶
kafka_list_scram_secrets(ClusterArn, MaxResults, NextToken)
Arguments¶
ClusterArn |
[required] The arn of the cluster. |
MaxResults |
The maxResults of the query. |
NextToken |
The nextToken of the query. |
Value¶
A list with the following syntax:
list(
NextToken = "string",
SecretArnList = list(
"string"
)
)
Request syntax¶
svc$list_scram_secrets(
ClusterArn = "string",
MaxResults = 123,
NextToken = "string"
)