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.
594 595 596 597 598 599 600 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 594 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.
594 595 596 597 598 599 600 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 594 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.
594 595 596 597 598 599 600 |
# File 'gems/aws-sdk-datapipeline/lib/aws-sdk-datapipeline/types.rb', line 594 class ListPipelinesOutput < Struct.new( :pipeline_id_list, :marker, :has_more_results) SENSITIVE = [] include Aws::Structure end |