Class: Aws::SecretsManager::Types::ListSecretsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecretsManager::Types::ListSecretsResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-secretsmanager/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
Secrets Manager includes this value if there’s more output available than what is included in the current response.
-
#secret_list ⇒ Array<Types::SecretListEntry>
A list of the secrets in the account.
Instance Attribute Details
#next_token ⇒ String
Secrets Manager includes this value if there’s more output available than what is included in the current response. This can occur even when the response includes no values at all, such as when you ask for a filtered view of a long list. To get the next results, call ‘ListSecrets` again with this value.
1201 1202 1203 1204 1205 1206 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1201 class ListSecretsResponse < Struct.new( :secret_list, :next_token) SENSITIVE = [] include Aws::Structure end |
#secret_list ⇒ Array<Types::SecretListEntry>
A list of the secrets in the account.
1201 1202 1203 1204 1205 1206 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1201 class ListSecretsResponse < Struct.new( :secret_list, :next_token) SENSITIVE = [] include Aws::Structure end |