Class: Aws::ElementalInference::Types::SearchFixturesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElementalInference::Types::SearchFixturesResponse
- Defined in:
- gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fixtures ⇒ Array<Types::FixtureSummary>
An array of FixtureSummary objects, one for each fixture that matches the search.
-
#next_token ⇒ String
The token that identifies the next batch of results.
Instance Attribute Details
#fixtures ⇒ Array<Types::FixtureSummary>
An array of FixtureSummary objects, one for each fixture that matches the search. The array is empty if no fixtures match.
1137 1138 1139 1140 1141 1142 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 1137 class SearchFixturesResponse < Struct.new( :fixtures, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token that identifies the next batch of results. To see the next batch, submit the SearchFixtures request again, with the same search criteria, and specify this value in nextToken.
This parameter is absent when there are no more results to return.
1137 1138 1139 1140 1141 1142 |
# File 'gems/aws-sdk-elementalinference/lib/aws-sdk-elementalinference/types.rb', line 1137 class SearchFixturesResponse < Struct.new( :fixtures, :next_token) SENSITIVE = [] include Aws::Structure end |