Class: Aws::SageMaker::Types::ListModelsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ListModelsOutput
- Defined in:
- gems/aws-sdk-sagemaker/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.
31308 31309 31310 31311 31312 31313 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 31308 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.
31308 31309 31310 31311 31312 31313 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 31308 class ListModelsOutput < Struct.new( :models, :next_token) SENSITIVE = [] include Aws::Structure end |