line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::DataPipeline::ListPipelinesOutput; |
3
|
1
|
|
|
1
|
|
432
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has HasMoreResults => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'hasMoreResults' ); |
5
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'marker' ); |
6
|
|
|
|
|
|
|
has PipelineIdList => (is => 'ro', isa => 'ArrayRef[Paws::DataPipeline::PipelineIdName]', traits => ['NameInRequest'], request_name => 'pipelineIdList' , required => 1); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::DataPipeline::ListPipelinesOutput |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 HasMoreResults => Bool |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Indicates whether there are more results that can be obtained by a |
22
|
|
|
|
|
|
|
subsequent call. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 Marker => Str |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
The starting point for the next page of results. To view the next page |
28
|
|
|
|
|
|
|
of results, call C<ListPipelinesOutput> again with this marker value. |
29
|
|
|
|
|
|
|
If the value is null, there are no more results. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 B<REQUIRED> PipelineIdList => ArrayRef[L<Paws::DataPipeline::PipelineIdName>] |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The pipeline identifiers. If you require additional information about |
35
|
|
|
|
|
|
|
the pipelines, you can use these identifiers to call DescribePipelines |
36
|
|
|
|
|
|
|
and GetPipelineDefinition. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 _request_id => Str |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=cut |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
1; |