Class: Aws::SSM::Types::PatchOrchestratorFilter

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

Overview

Note:

When making an API call, you may pass PatchOrchestratorFilter data as a hash:

{
  key: "PatchOrchestratorFilterKey",
  values: ["PatchOrchestratorFilterValue"],
}

Defines a filter used in Patch Manager APIs.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key for the filter.

Returns:

  • (String)


10612
10613
10614
10615
10616
# File 'lib/aws-sdk-ssm/types.rb', line 10612

class PatchOrchestratorFilter < Struct.new(
  :key,
  :values)
  include Aws::Structure
end

#valuesArray<String>

The value for the filter.

Returns:

  • (Array<String>)


10612
10613
10614
10615
10616
# File 'lib/aws-sdk-ssm/types.rb', line 10612

class PatchOrchestratorFilter < Struct.new(
  :key,
  :values)
  include Aws::Structure
end