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

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

Instance Attribute Details

#keyString

Represents the key in the map condition.

Returns:

  • (String)


6889
6890
6891
6892
6893
6894
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6889

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)


6889
6890
6891
6892
6893
6894
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 6889

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