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)


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

#valueString

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

Returns:

  • (String)


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