Table of Contents

Class ListSecretsRequest

Namespace
Amazon.SecretsManager.Model
Assembly
AWSSDK.SecretsManager.dll

Container for the parameters to the ListSecrets operation. 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.
note

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 more results become 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

public class ListSecretsRequest : AmazonSecretsManagerRequest
Inheritance
ListSecretsRequest

Constructors

ListSecretsRequest()

public ListSecretsRequest()

Properties

Filters

Gets and sets the property Filters.

Lists the secret request filters.

public List<Filter> Filters { get; set; }

Property Value

List<Filter>

MaxResults

Gets and sets the property MaxResults.

(Optional) Limits the number of results 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.
public int MaxResults { get; set; }

Property Value

int

NextToken

Gets and sets the property NextToken.

(Optional) Use this parameter in a request if you receive a

NextToken
response in a previous request indicating there's more output available. In a subsequent call, set it to the value of the previous call
NextToken
response to indicate where the output should continue from.
public string NextToken { get; set; }

Property Value

string

SortOrder

Gets and sets the property SortOrder.

Lists secrets in the requested order.

public SortOrderType SortOrder { get; set; }

Property Value

SortOrderType