Class: Aws::DataPipeline::Types::ListPipelinesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataPipeline::Types::ListPipelinesOutput
- Defined in:
- gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb
Overview
Contains the output of ListPipelines.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#has_more_results ⇒ Boolean
Indicates whether there are more results that can be obtained by a subsequent call.
-
#marker ⇒ String
The starting point for the next page of results.
-
#pipeline_id_list ⇒ Array<Types::PipelineIdName>
The pipeline identifiers.
Instance Attribute Details
#has_more_results ⇒ Boolean
Indicates whether there are more results that can be obtained by a subsequent call.
479 480 481 482 483 484 485 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 479 class ListPipelinesOutput < Struct.new( :pipeline_id_list, :marker, :has_more_results) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
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.
479 480 481 482 483 484 485 |
# File 'gems/aws-sdk-datapipeline/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_list ⇒ Array<Types::PipelineIdName>
The pipeline identifiers. If you require additional information about the pipelines, you can use these identifiers to call DescribePipelines and GetPipelineDefinition.
479 480 481 482 483 484 485 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 479 class ListPipelinesOutput < Struct.new( :pipeline_id_list, :marker, :has_more_results) SENSITIVE = [] include Aws::Structure end |