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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-guardduty/types.rb

Overview

Represents key, value pair to be matched against given resource property.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

Represents key **** in the map condition.

Returns:

  • (String)


5204
5205
5206
5207
5208
5209
# File 'lib/aws-sdk-guardduty/types.rb', line 5204

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

#valueString

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

Returns:

  • (String)


5204
5205
5206
5207
5208
5209
# File 'lib/aws-sdk-guardduty/types.rb', line 5204

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