Class: Aws::SSM::Types::OpsItemEventFilter

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

Overview

Describes a filter for a specific list of OpsItem events. You can filter event information by using tags. You specify tags by using a key-value pair mapping.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The name of the filter key. Currently, the only supported value is OpsItemId.

Returns:

  • (String)


13470
13471
13472
13473
13474
13475
13476
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 13470

class OpsItemEventFilter < Struct.new(
  :key,
  :values,
  :operator)
  SENSITIVE = []
  include Aws::Structure
end

#operatorString

The operator used by the filter call. Currently, the only supported value is Equal.

Returns:

  • (String)


13470
13471
13472
13473
13474
13475
13476
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 13470

class OpsItemEventFilter < Struct.new(
  :key,
  :values,
  :operator)
  SENSITIVE = []
  include Aws::Structure
end

#valuesArray<String>

The values for the filter, consisting of one or more OpsItem IDs.

Returns:

  • (Array<String>)


13470
13471
13472
13473
13474
13475
13476
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 13470

class OpsItemEventFilter < Struct.new(
  :key,
  :values,
  :operator)
  SENSITIVE = []
  include Aws::Structure
end