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

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

{
  key: "ComplianceStringFilterKey",
  values: ["ComplianceFilterValue"],
  type: "EQUAL", # accepts EQUAL, NOT_EQUAL, BEGIN_WITH, LESS_THAN, GREATER_THAN
}

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

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The name of the filter.

Returns:

  • (String)


1929
1930
1931
1932
1933
1934
# File 'lib/aws-sdk-ssm/types.rb', line 1929

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

#typeString

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

Returns:

  • (String)


1929
1930
1931
1932
1933
1934
# File 'lib/aws-sdk-ssm/types.rb', line 1929

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

#valuesArray<String>

The value for which to search.

Returns:

  • (Array<String>)


1929
1930
1931
1932
1933
1934
# File 'lib/aws-sdk-ssm/types.rb', line 1929

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