Class: Aws::GuardDuty::Types::ScanConditionPair
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::ScanConditionPair
- Includes:
- Structure
- Defined in:
- 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.
7821 7822 7823 7824 7825 7826 |
# File 'lib/aws-sdk-guardduty/types.rb', line 7821 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.
7821 7822 7823 7824 7825 7826 |
# File 'lib/aws-sdk-guardduty/types.rb', line 7821 class ScanConditionPair < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |