Class: Aws::Inspector2::Types::MapFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector2::Types::MapFilter
- Defined in:
- gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb
Overview
An object that describes details of a map filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comparison ⇒ String
The operator to use when comparing values in the filter.
-
#key ⇒ String
The tag key used in the filter.
-
#value ⇒ String
The tag value used in the filter.
Instance Attribute Details
#comparison ⇒ String
The operator to use when comparing values in the filter.
5390 5391 5392 5393 5394 5395 5396 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 5390 class MapFilter < Struct.new( :comparison, :key, :value) SENSITIVE = [] include Aws::Structure end |