Class: Aws::SecretsManager::Types::BatchGetSecretValueResponse

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

#errorsArray<Types::APIErrorType>

A list of errors Secrets Manager encountered while attempting to retrieve individual secrets.

Returns:



97
98
99
100
101
102
103
# File 'lib/aws-sdk-secretsmanager/types.rb', line 97

class BatchGetSecretValueResponse < Struct.new(
  :secret_values,
  :next_token,
  :errors)
  SENSITIVE = []
  include Aws::Structure
end

#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 ‘BatchGetSecretValue` again with this value.

Returns:

  • (String)


97
98
99
100
101
102
103
# File 'lib/aws-sdk-secretsmanager/types.rb', line 97

class BatchGetSecretValueResponse < Struct.new(
  :secret_values,
  :next_token,
  :errors)
  SENSITIVE = []
  include Aws::Structure
end

#secret_valuesArray<Types::SecretValueEntry>

A list of secret values.

Returns:



97
98
99
100
101
102
103
# File 'lib/aws-sdk-secretsmanager/types.rb', line 97

class BatchGetSecretValueResponse < Struct.new(
  :secret_values,
  :next_token,
  :errors)
  SENSITIVE = []
  include Aws::Structure
end