Class: Aws::Inspector2::Types::StringFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector2::Types::StringFilter
- Defined in:
- gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb
Overview
Note:
When making an API call, you may pass StringFilter data as a hash:
{
comparison: "EQUALS", # required, accepts EQUALS, PREFIX, NOT_EQUALS
value: "StringInput", # required
}
An object that describes the details of a string filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comparison ⇒ String
The operator to use when comparing values in the filter.
-
#value ⇒ String
The value to filter on.
Instance Attribute Details
#comparison ⇒ String
The operator to use when comparing values in the filter
5105 5106 5107 5108 5109 5110 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 5105 class StringFilter < Struct.new( :comparison, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value to filter on.
5105 5106 5107 5108 5109 5110 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 5105 class StringFilter < Struct.new( :comparison, :value) SENSITIVE = [] include Aws::Structure end |