Class: Aws::SecretsManager::Types::BatchGetSecretValueRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecretsManager::Types::BatchGetSecretValueRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-secretsmanager/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::Filter>
The filters to choose which secrets to retrieve.
-
#max_results ⇒ Integer
The number of results to include in the response.
-
#next_token ⇒ String
A token that indicates where the output should continue from, if a previous call did not show all results.
-
#secret_id_list ⇒ Array<String>
The ARN or names of the secrets to retrieve.
Instance Attribute Details
#filters ⇒ Array<Types::Filter>
The filters to choose which secrets to retrieve. You must include ‘Filters` or `SecretIdList`, but not both.
69 70 71 72 73 74 75 76 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 69 class BatchGetSecretValueRequest < Struct.new( :secret_id_list, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The number of results to include in the response.
If there are more results available, in the response, Secrets Manager includes ‘NextToken`. To get the next results, call `BatchGetSecretValue` again with the value from `NextToken`. To use this parameter, you must also use the `Filters` parameter.
69 70 71 72 73 74 75 76 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 69 class BatchGetSecretValueRequest < Struct.new( :secret_id_list, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token that indicates where the output should continue from, if a previous call did not show all results. To get the next results, call ‘BatchGetSecretValue` again with this value.
69 70 71 72 73 74 75 76 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 69 class BatchGetSecretValueRequest < Struct.new( :secret_id_list, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#secret_id_list ⇒ Array<String>
The ARN or names of the secrets to retrieve. You must include ‘Filters` or `SecretIdList`, but not both.
69 70 71 72 73 74 75 76 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 69 class BatchGetSecretValueRequest < Struct.new( :secret_id_list, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |