Class: Aws::SSM::Types::DocumentFilter

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

{
  key: "Name", # required, accepts Name, Owner, PlatformTypes, DocumentType
  value: "DocumentFilterValue", # required
}

Describes a filter.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The name of the filter.

Returns:

  • (String)


5268
5269
5270
5271
5272
# File 'lib/aws-sdk-ssm/types.rb', line 5268

class DocumentFilter < Struct.new(
  :key,
  :value)
  include Aws::Structure
end

#valueString

The value of the filter.

Returns:

  • (String)


5268
5269
5270
5271
5272
# File 'lib/aws-sdk-ssm/types.rb', line 5268

class DocumentFilter < Struct.new(
  :key,
  :value)
  include Aws::Structure
end