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

Class: Aws::IoTThingsGraph::Types::SearchSystemInstancesRequest

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

Overview

Note:

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

{
  filters: [
    {
      name: "SYSTEM_TEMPLATE_ID", # accepts SYSTEM_TEMPLATE_ID, STATUS, GREENGRASS_GROUP_NAME
      value: ["SystemInstanceFilterValue"],
    },
  ],
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#filtersArray<Types::SystemInstanceFilter>

Optional filter to apply to the search. Valid filters are SYSTEM_TEMPLATE_ID, STATUS, and GREENGRASS_GROUP_NAME.

Multiple filters function as OR criteria in the query. Multiple values passed inside the filter function as AND criteria.

Returns:

#max_resultsInteger

The maximum number of results to return in the response.

Returns:

  • (Integer)

    The maximum number of results to return in the response.

#next_tokenString

The string that specifies the next page of results. Use this when you\'re paginating results.

Returns:

  • (String)

    The string that specifies the next page of results.