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)


13134
13135
13136
13137
13138
13139
13140
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 13134

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)


13134
13135
13136
13137
13138
13139
13140
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 13134

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>)


13134
13135
13136
13137
13138
13139
13140
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 13134

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