Class: Aws::SSM::Types::AssociationExecutionFilter

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 AssociationExecutionFilter data as a hash:

{
  key: "ExecutionId", # required, accepts ExecutionId, Status, CreatedTime
  value: "AssociationExecutionFilterValue", # required
  type: "EQUAL", # required, accepts EQUAL, LESS_THAN, GREATER_THAN
}

Filters used in the request.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key value used in the request.

Returns:

  • (String)


411
412
413
414
415
416
# File 'lib/aws-sdk-ssm/types.rb', line 411

class AssociationExecutionFilter < Struct.new(
  :key,
  :value,
  :type)
  include Aws::Structure
end

#typeString

The filter type specified in the request.

Returns:

  • (String)


411
412
413
414
415
416
# File 'lib/aws-sdk-ssm/types.rb', line 411

class AssociationExecutionFilter < Struct.new(
  :key,
  :value,
  :type)
  include Aws::Structure
end

#valueString

The value specified for the key.

Returns:

  • (String)


411
412
413
414
415
416
# File 'lib/aws-sdk-ssm/types.rb', line 411

class AssociationExecutionFilter < Struct.new(
  :key,
  :value,
  :type)
  include Aws::Structure
end