Class: Aws::SecretsManager::Types::BatchGetSecretValueResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecretsManager::Types::BatchGetSecretValueResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-secretsmanager/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#errors ⇒ Array<Types::APIErrorType>
A list of errors Secrets Manager encountered while attempting to retrieve individual secrets.
-
#next_token ⇒ String
Secrets Manager includes this value if there’s more output available than what is included in the current response.
-
#secret_values ⇒ Array<Types::SecretValueEntry>
A list of secret values.
Instance Attribute Details
#errors ⇒ Array<Types::APIErrorType>
A list of errors Secrets Manager encountered while attempting to retrieve individual secrets.
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_token ⇒ String
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.
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_values ⇒ Array<Types::SecretValueEntry>
A list of secret values.
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 |