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)


1149
1150
1151
1152
1153
1154
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1149

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:



1149
1150
1151
1152
1153
1154
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1149

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