Class: Aws::BCMRecommendedActions::Types::ActionFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::BCMRecommendedActions::Types::ActionFilter
- Defined in:
- gems/aws-sdk-bcmrecommendedactions/lib/aws-sdk-bcmrecommendedactions/types.rb
Overview
Describes a filter that returns a more specific list of recommended actions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The category to filter on.
-
#match_option ⇒ String
Specifies how to apply the filter.
-
#values ⇒ Array<String>
One or more values to match against the specified key.
Instance Attribute Details
#key ⇒ String
The category to filter on. Valid values are FEATURE
for feature
type, SEVERITY
for severity level, and TYPE
for recommendation
type.
46 47 48 49 50 51 52 |
# File 'gems/aws-sdk-bcmrecommendedactions/lib/aws-sdk-bcmrecommendedactions/types.rb', line 46 class ActionFilter < Struct.new( :key, :match_option, :values) SENSITIVE = [] include Aws::Structure end |
#match_option ⇒ String
Specifies how to apply the filter. Use EQUALS
to include matching
results or NOT_EQUALS
to exclude matching results.
46 47 48 49 50 51 52 |
# File 'gems/aws-sdk-bcmrecommendedactions/lib/aws-sdk-bcmrecommendedactions/types.rb', line 46 class ActionFilter < Struct.new( :key, :match_option, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
One or more values to match against the specified key.
46 47 48 49 50 51 52 |
# File 'gems/aws-sdk-bcmrecommendedactions/lib/aws-sdk-bcmrecommendedactions/types.rb', line 46 class ActionFilter < Struct.new( :key, :match_option, :values) SENSITIVE = [] include Aws::Structure end |