Class: Aws::SageMaker::Types::ListModelsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ListModelsOutput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#models ⇒ Array<Types::ModelSummary>
An array of ‘ModelSummary` objects, each of which lists a model.
-
#next_token ⇒ String
If the response is truncated, SageMaker returns this token.
Instance Attribute Details
#models ⇒ Array<Types::ModelSummary>
An array of ‘ModelSummary` objects, each of which lists a model.
29736 29737 29738 29739 29740 29741 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 29736 class ListModelsOutput < Struct.new( :models, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the response is truncated, SageMaker returns this token. To retrieve the next set of models, use it in the subsequent request.
29736 29737 29738 29739 29740 29741 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 29736 class ListModelsOutput < Struct.new( :models, :next_token) SENSITIVE = [] include Aws::Structure end |