Class: Aws::IoTThingsGraph::Types::SearchSystemInstancesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTThingsGraph::Types::SearchSystemInstancesRequest
- Defined in:
- gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::SystemInstanceFilter>
Optional filter to apply to the search.
-
#max_results ⇒ Integer
The maximum number of results to return in the response.
-
#next_token ⇒ String
The string that specifies the next page of results.
Instance Attribute Details
#filters ⇒ Array<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.
1164 1165 1166 1167 1168 1169 1170 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1164 class SearchSystemInstancesRequest < Struct.new( :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return in the response.
1164 1165 1166 1167 1168 1169 1170 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1164 class SearchSystemInstancesRequest < Struct.new( :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The string that specifies the next page of results. Use this when you're paginating results.
1164 1165 1166 1167 1168 1169 1170 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1164 class SearchSystemInstancesRequest < Struct.new( :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |