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)


1178
1179
1180
1181
1182
1183
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 1178

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:



1178
1179
1180
1181
1182
1183
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 1178

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