Class: Aws::SSM::Types::ComplianceStringFilter

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

Overview

One or more filters. Use a filter to return a more specific list of results.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The name of the filter.

Returns:

  • (String)


2593
2594
2595
2596
2597
2598
2599
# File 'lib/aws-sdk-ssm/types.rb', line 2593

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

#typeString

The type of comparison that should be performed for the value: Equal, NotEqual, BeginWith, LessThan, or GreaterThan.

Returns:

  • (String)


2593
2594
2595
2596
2597
2598
2599
# File 'lib/aws-sdk-ssm/types.rb', line 2593

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

#valuesArray<String>

The value for which to search.

Returns:

  • (Array<String>)


2593
2594
2595
2596
2597
2598
2599
# File 'lib/aws-sdk-ssm/types.rb', line 2593

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