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.
7822 7823 7824 7825 7826 7827 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 7822 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.
7822 7823 7824 7825 7826 7827 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 7822 class ScanConditionPair < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |