Class: Aws::LookoutEquipment::Types::ListModelVersionsResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lookoutequipment/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#model_version_summariesArray<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>

Returns:



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_tokenString

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.

Returns:

  • (String)


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