Class: Aws::LookoutEquipment::Types::ListModelVersionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutEquipment::Types::ListModelVersionsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lookoutequipment/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#model_version_summaries ⇒ Array<Types::ModelVersionSummary>
Provides information on the specified model version, including the created time, model and dataset ARNs, and status.
-
#next_token ⇒ String
If the total number of results exceeds the limit that the response can display, the response returns an opaque pagination token indicating where to continue the listing of machine learning model versions.
Instance Attribute Details
#model_version_summaries ⇒ Array<Types::ModelVersionSummary>
Provides information on the specified model version, including the created time, model and dataset ARNs, and status.
<note markdown=“1”> If you don’t supply the ‘ModelName` request parameter, or if you supply the name of a model that doesn’t exist, ‘ListModelVersions` returns an empty array in `ModelVersionSummaries`.
</note>
3260 3261 3262 3263 3264 3265 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 3260 class ListModelVersionsResponse < Struct.new( :next_token, :model_version_summaries) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the total number of results exceeds the limit that the response can display, the response returns an opaque pagination token indicating where to continue the listing of machine learning model versions. Use this token in the ‘NextToken` field in the request to list the next page of results.
3260 3261 3262 3263 3264 3265 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 3260 class ListModelVersionsResponse < Struct.new( :next_token, :model_version_summaries) SENSITIVE = [] include Aws::Structure end |