Class: Aws::SecretsManager::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecretsManager::Types::Filter
- Defined in:
- gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb
Overview
Allows you to add filters when you use the search function in Secrets Manager. For more information, see Find secrets in Secrets Manager.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The following are keys you can use:.
-
#values ⇒ Array<String>
The keyword to filter for.
Instance Attribute Details
#key ⇒ String
The following are keys you can use:
description: Prefix match, not case-sensitive.
name: Prefix match, case-sensitive.
tag-key: Prefix match, case-sensitive.
tag-value: Prefix match, case-sensitive.
primary-region: Prefix match, case-sensitive.
owning-service: Prefix match, case-sensitive.
all: Breaks the filter value string into words and then searches all attributes for matches. Not case-sensitive.
746 747 748 749 750 751 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 746 class Filter < Struct.new( :key, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The keyword to filter for.
You can prefix your search value with an exclamation mark (!
) in
order to perform negation filters.
746 747 748 749 750 751 |
# File 'gems/aws-sdk-secretsmanager/lib/aws-sdk-secretsmanager/types.rb', line 746 class Filter < Struct.new( :key, :values) SENSITIVE = [] include Aws::Structure end |