Learn R Programming

paws.security.identity (version 0.1.0)

secretsmanager_list_secrets: Lists all of the secrets that are stored by Secrets Manager in the AWS account

Description

Lists all of the secrets that are stored by Secrets Manager in the AWS account. To list the versions currently stored for a specific secret, use ListSecretVersionIds. The encrypted fields SecretString and SecretBinary are not included in the output. To get that information, call the GetSecretValue operation.

Usage

secretsmanager_list_secrets(MaxResults, NextToken)

Arguments

MaxResults

(Optional) Limits the number of results that you want to include in the response. If you don't include this parameter, it defaults to a value that's specific to the operation. If additional items exist beyond the maximum you specify, the NextToken response element is present and has a value (isn't null). Include that value as the NextToken request parameter in the next call to the operation to get the next part of the results. Note that Secrets Manager might return fewer results than the maximum even when there are more results available. You should check NextToken after every operation to ensure that you receive all of the results.

NextToken

(Optional) Use this parameter in a request if you receive a NextToken response in a previous request that indicates that there's more output available. In a subsequent call, set it to the value of the previous call's NextToken response to indicate where the output should continue from.

Request syntax

svc$list_secrets(
  MaxResults = 123,
  NextToken = "string"
)

Details

Always check the NextToken response parameter when calling any of the List* operations. These operations can occasionally return an empty or shorter than expected list of results even when there are more results available. When this happens, the NextToken response parameter contains a value to pass to the next call to the same API to request the next part of the list.

Minimum permissions

To run this command, you must have the following permissions:

  • secretsmanager:ListSecrets

Related operations

  • To list the versions attached to a secret, use ListSecretVersionIds.

Examples

Run this code
# NOT RUN {
# The following example shows how to list all of the secrets in your
# account.
# }
# NOT RUN {
svc$list_secrets()
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab