Class: Aws::GuardDuty::Types::ScanConditionPair

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#keyString

Represents the key in the map condition.

Returns:

  • (String)


6249
6250
6251
6252
6253
6254
# File 'lib/aws-sdk-guardduty/types.rb', line 6249

class ScanConditionPair < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

Represents optional value in the map condition. If not specified, only the key will be matched.

Returns:

  • (String)


6249
6250
6251
6252
6253
6254
# File 'lib/aws-sdk-guardduty/types.rb', line 6249

class ScanConditionPair < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end