Class: Aws::SageMaker::Types::ListPipelineVersionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ListPipelineVersionsResponse
- 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 result of the previous ‘ListPipelineVersions` request was truncated, the response includes a `NextToken`.
-
#pipeline_version_summaries ⇒ Array<Types::PipelineVersionSummary>
Contains a sorted list of pipeline version summary objects matching the specified filters.
Instance Attribute Details
#next_token ⇒ String
If the result of the previous ‘ListPipelineVersions` request was truncated, the response includes a `NextToken`. To retrieve the next set of pipeline versions, use this token in your next request.
35736 35737 35738 35739 35740 35741 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 35736 class ListPipelineVersionsResponse < Struct.new( :pipeline_version_summaries, :next_token) SENSITIVE = [] include Aws::Structure end |
#pipeline_version_summaries ⇒ Array<Types::PipelineVersionSummary>
Contains a sorted list of pipeline version summary objects matching the specified filters. Each version summary includes the pipeline version ID, the creation date, and the last pipeline execution created from that version. This list can be empty.
35736 35737 35738 35739 35740 35741 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 35736 class ListPipelineVersionsResponse < Struct.new( :pipeline_version_summaries, :next_token) SENSITIVE = [] include Aws::Structure end |