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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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)


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_listArray<Types::SecretListEntry>

A list of the secrets in the account.

Returns:



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