Class: Aws::SsmSap::Types::Filter

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

Overview

A specific result obtained by specifying the name, value, and operator.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the filter. Filter names are case-sensitive.

Returns:

  • (String)


555
556
557
558
559
560
561
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 555

class Filter < Struct.new(
  :name,
  :value,
  :operator)
  SENSITIVE = []
  include Aws::Structure
end

#operatorString

The operator for the filter.

Returns:

  • (String)


555
556
557
558
559
560
561
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 555

class Filter < Struct.new(
  :name,
  :value,
  :operator)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The filter values. Filter values are case-sensitive. If you specify multiple values for a filter, the values are joined with an OR, and the request returns all results that match any of the specified values

Returns:

  • (String)


555
556
557
558
559
560
561
# File 'gems/aws-sdk-ssmsap/lib/aws-sdk-ssmsap/types.rb', line 555

class Filter < Struct.new(
  :name,
  :value,
  :operator)
  SENSITIVE = []
  include Aws::Structure
end