Class: Aws::DataPipeline::Types::ListPipelinesOutput

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

Overview

Contains the output of ListPipelines.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#has_more_resultsBoolean

Indicates whether there are more results that can be obtained by a subsequent call.

Returns:

  • (Boolean)


479
480
481
482
483
484
485
# File 'lib/aws-sdk-datapipeline/types.rb', line 479

class ListPipelinesOutput < Struct.new(
  :pipeline_id_list,
  :marker,
  :has_more_results)
  SENSITIVE = []
  include Aws::Structure
end

#markerString

The starting point for the next page of results. To view the next page of results, call ‘ListPipelinesOutput` again with this marker value. If the value is null, there are no more results.

Returns:

  • (String)


479
480
481
482
483
484
485
# File 'lib/aws-sdk-datapipeline/types.rb', line 479

class ListPipelinesOutput < Struct.new(
  :pipeline_id_list,
  :marker,
  :has_more_results)
  SENSITIVE = []
  include Aws::Structure
end

#pipeline_id_listArray<Types::PipelineIdName>

The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.

Returns:



479
480
481
482
483
484
485
# File 'lib/aws-sdk-datapipeline/types.rb', line 479

class ListPipelinesOutput < Struct.new(
  :pipeline_id_list,
  :marker,
  :has_more_results)
  SENSITIVE = []
  include Aws::Structure
end