Class: Aws::GuardDuty::Types::ScanConditionPair
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::ScanConditionPair
- Defined in:
- gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb
Overview
Represents the key:value pair to be matched against given resource
property.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
Represents the key in the map condition.
-
#value ⇒ String
Represents optional value in the map condition.
Instance Attribute Details
#key ⇒ String
Represents the key in the map condition.
11053 11054 11055 11056 11057 11058 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 11053 class ScanConditionPair < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
Represents optional value in the map condition. If not specified, only the key will be matched.
11053 11054 11055 11056 11057 11058 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 11053 class ScanConditionPair < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |