Class: Aws::SageMaker::Types::ListCompilationJobsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ListCompilationJobsResponse
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compilation_job_summaries ⇒ Array<Types::CompilationJobSummary>
An array of [CompilationJobSummary] objects, each describing a model compilation job.
-
#next_token ⇒ String
If the response is truncated, Amazon SageMaker returns this ‘NextToken`.
Instance Attribute Details
#compilation_job_summaries ⇒ Array<Types::CompilationJobSummary>
An array of [CompilationJobSummary] objects, each describing a model compilation job.
[1]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_CompilationJobSummary.html
27015 27016 27017 27018 27019 27020 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 27015 class ListCompilationJobsResponse < Struct.new( :compilation_job_summaries, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the response is truncated, Amazon SageMaker returns this ‘NextToken`. To retrieve the next set of model compilation jobs, use this token in the next request.
27015 27016 27017 27018 27019 27020 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 27015 class ListCompilationJobsResponse < Struct.new( :compilation_job_summaries, :next_token) SENSITIVE = [] include Aws::Structure end |