Class: Aws::IoTThingsGraph::Types::SearchSystemTemplatesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTThingsGraph::Types::SearchSystemTemplatesRequest
- Defined in:
- gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb
Overview
Note:
When making an API call, you may pass SearchSystemTemplatesRequest data as a hash:
{
filters: [
{
name: "FLOW_TEMPLATE_ID", # required, accepts FLOW_TEMPLATE_ID
value: ["SystemTemplateFilterValue"], # required
},
],
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::SystemTemplateFilter>
An array of filters that limit the result set.
-
#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::SystemTemplateFilter>
An array of filters that limit the result set. The only valid filter
is FLOW_TEMPLATE_ID
.
1491 1492 1493 1494 1495 1496 1497 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1491 class SearchSystemTemplatesRequest < 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.
1491 1492 1493 1494 1495 1496 1497 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1491 class SearchSystemTemplatesRequest < 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.
1491 1492 1493 1494 1495 1496 1497 |
# File 'gems/aws-sdk-iotthingsgraph/lib/aws-sdk-iotthingsgraph/types.rb', line 1491 class SearchSystemTemplatesRequest < Struct.new( :filters, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |