Learn R Programming

paws.analytics (version 0.1.12)

kafka_list_scram_secrets: 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)

Value

A list with the following syntax:

list(
  NextToken = "string",
  SecretArnList = list(
    "string"
  )
)

Arguments

ClusterArn

[required] The arn of the cluster.

MaxResults

The maxResults of the query.

NextToken

The nextToken of the query.

Request syntax

svc$list_scram_secrets(
  ClusterArn = "string",
  MaxResults = 123,
  NextToken = "string"
)