Class: Aws::SSM::Types::ParameterStringFilter

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

{
  key: "ParameterStringFilterKey", # required
  option: "ParameterStringQueryOption",
  values: ["ParameterStringFilterValue"],
}

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

<note markdown=“1”> The ‘Name` field can’t be used with the GetParametersByPath API action.

</note>

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The name of the filter.

Returns:

  • (String)


9902
9903
9904
9905
9906
9907
# File 'lib/aws-sdk-ssm/types.rb', line 9902

class ParameterStringFilter < Struct.new(
  :key,
  :option,
  :values)
  include Aws::Structure
end

#optionString

Valid options are Equals and BeginsWith. For Path filter, valid options are Recursive and OneLevel.

Returns:

  • (String)


9902
9903
9904
9905
9906
9907
# File 'lib/aws-sdk-ssm/types.rb', line 9902

class ParameterStringFilter < Struct.new(
  :key,
  :option,
  :values)
  include Aws::Structure
end

#valuesArray<String>

The value you want to search for.

Returns:

  • (Array<String>)


9902
9903
9904
9905
9906
9907
# File 'lib/aws-sdk-ssm/types.rb', line 9902

class ParameterStringFilter < Struct.new(
  :key,
  :option,
  :values)
  include Aws::Structure
end