Class: Aws::SecretsManager::Types::ListSecretsResponse

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

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.

Returns:

  • (String)


1173
1174
1175
1176
1177
1178
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 1173

class ListSecretsResponse < Struct.new(
  :secret_list,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#secret_listArray<Types::SecretListEntry>

A list of the secrets in the account.

Returns:



1173
1174
1175
1176
1177
1178
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 1173

class ListSecretsResponse < Struct.new(
  :secret_list,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end