You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing SystemInstanceFilter as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "SYSTEM_TEMPLATE_ID", # accepts SYSTEM_TEMPLATE_ID, STATUS, GREENGRASS_GROUP_NAME
  value: ["SystemInstanceFilterValue"],
}

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.

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the search filter field.

Possible values:

  • SYSTEM_TEMPLATE_ID
  • STATUS
  • GREENGRASS_GROUP_NAME

Returns:

  • (String)

    The name of the search filter field.

#valueArray<String>

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

Returns:

  • (Array<String>)

    An array of string values for the search filter field.