Class: Aws::SecretsManager::Types::ListSecretsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecretsManager::Types::ListSecretsRequest
- 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 apply to the list of secrets.
-
#include_planned_deletion ⇒ Boolean
Specifies whether to include secrets scheduled for deletion.
-
#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.
-
#sort_order ⇒ String
Secrets are listed by ‘CreatedDate`.
Instance Attribute Details
#filters ⇒ Array<Types::Filter>
The filters to apply to the list of secrets.
1177 1178 1179 1180 1181 1182 1183 1184 1185 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1177 class ListSecretsRequest < Struct.new( :include_planned_deletion, :max_results, :next_token, :filters, :sort_order) SENSITIVE = [] include Aws::Structure end |
#include_planned_deletion ⇒ Boolean
Specifies whether to include secrets scheduled for deletion. By default, secrets scheduled for deletion aren’t included.
1177 1178 1179 1180 1181 1182 1183 1184 1185 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1177 class ListSecretsRequest < Struct.new( :include_planned_deletion, :max_results, :next_token, :filters, :sort_order) 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 `ListSecrets` again with the value from `NextToken`.
1177 1178 1179 1180 1181 1182 1183 1184 1185 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1177 class ListSecretsRequest < Struct.new( :include_planned_deletion, :max_results, :next_token, :filters, :sort_order) 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 ‘ListSecrets` again with this value.
1177 1178 1179 1180 1181 1182 1183 1184 1185 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1177 class ListSecretsRequest < Struct.new( :include_planned_deletion, :max_results, :next_token, :filters, :sort_order) SENSITIVE = [] include Aws::Structure end |
#sort_order ⇒ String
Secrets are listed by ‘CreatedDate`.
1177 1178 1179 1180 1181 1182 1183 1184 1185 |
# File 'lib/aws-sdk-secretsmanager/types.rb', line 1177 class ListSecretsRequest < Struct.new( :include_planned_deletion, :max_results, :next_token, :filters, :sort_order) SENSITIVE = [] include Aws::Structure end |