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.
33495 33496 33497 33498 33499 33500 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 33495 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.
33495 33496 33497 33498 33499 33500 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 33495 class ListModelsOutput < Struct.new( :models, :next_token) SENSITIVE = [] include Aws::Structure end |