Class: Aws::SageMaker::Types::ListPipelinesResponse

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

If the result of the previous ‘ListPipelines` request was truncated, the response includes a `NextToken`. To retrieve the next set of pipelines, use the token in the next request.

Returns:

  • (String)


29013
29014
29015
29016
29017
29018
# File 'lib/aws-sdk-sagemaker/types.rb', line 29013

class ListPipelinesResponse < Struct.new(
  :pipeline_summaries,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#pipeline_summariesArray<Types::PipelineSummary>

Contains a sorted list of ‘PipelineSummary` objects matching the specified filters. Each `PipelineSummary` consists of PipelineArn, PipelineName, ExperimentName, PipelineDescription, CreationTime, LastModifiedTime, LastRunTime, and RoleArn. This list can be empty.

Returns:



29013
29014
29015
29016
29017
29018
# File 'lib/aws-sdk-sagemaker/types.rb', line 29013

class ListPipelinesResponse < Struct.new(
  :pipeline_summaries,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end