Class: Aws::IoTThingsGraph::Types::SystemInstanceFilter

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

Overview

An object that filters a system instance search. Multiple filters function as OR criteria in the search. For example a search that includes a GREENGRASS_GROUP_NAME and a STATUS filter searches for system instances in the specified Greengrass group that have the specified status.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the search filter field.

Returns:

  • (String)


1340
1341
1342
1343
1344
1345
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1340

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

#valueArray<String>

An array of string values for the search filter field. Multiple values function as AND criteria in the search.

Returns:

  • (Array<String>)


1340
1341
1342
1343
1344
1345
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1340

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