Class: Aws::Inspector2::Types::TagFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector2::Types::TagFilter
- Defined in:
- gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb
Overview
The tag filter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comparison ⇒ String
The tag filter comparison value.
-
#key ⇒ String
The tag filter key.
-
#value ⇒ String
The tag filter value.
Instance Attribute Details
#comparison ⇒ String
The tag filter comparison value.
8425 8426 8427 8428 8429 8430 8431 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 8425 class TagFilter < Struct.new( :comparison, :key, :value) SENSITIVE = [] include Aws::Structure end |