Class: Aws::SageMaker::Types::ListTrainingJobsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ListTrainingJobsResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the response is truncated, SageMaker returns this token.
-
#training_job_summaries ⇒ Array<Types::TrainingJobSummary>
An array of ‘TrainingJobSummary` objects, each listing a training job.
Instance Attribute Details
#next_token ⇒ String
If the response is truncated, SageMaker returns this token. To retrieve the next set of training jobs, use it in the subsequent request.
31252 31253 31254 31255 31256 31257 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 31252 class ListTrainingJobsResponse < Struct.new( :training_job_summaries, :next_token) SENSITIVE = [] include Aws::Structure end |
#training_job_summaries ⇒ Array<Types::TrainingJobSummary>
An array of ‘TrainingJobSummary` objects, each listing a training job.
31252 31253 31254 31255 31256 31257 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 31252 class ListTrainingJobsResponse < Struct.new( :training_job_summaries, :next_token) SENSITIVE = [] include Aws::Structure end |