| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  |  | 
| 2 |  |  |  |  |  |  | package Paws::CodePipeline::ListPipelineExecutionsOutput; | 
| 3 | 1 |  |  | 1 |  | 436 | use Moose; | 
|  | 1 |  |  |  |  | 4 |  | 
|  | 1 |  |  |  |  | 6 |  | 
| 4 |  |  |  |  |  |  | has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' ); | 
| 5 |  |  |  |  |  |  | has PipelineExecutionSummaries => (is => 'ro', isa => 'ArrayRef[Paws::CodePipeline::PipelineExecutionSummary]', traits => ['NameInRequest'], request_name => 'pipelineExecutionSummaries' ); | 
| 6 |  |  |  |  |  |  |  | 
| 7 |  |  |  |  |  |  | has _request_id => (is => 'ro', isa => 'Str'); | 
| 8 |  |  |  |  |  |  |  | 
| 9 |  |  |  |  |  |  | ### main pod documentation begin ### | 
| 10 |  |  |  |  |  |  |  | 
| 11 |  |  |  |  |  |  | =head1 NAME | 
| 12 |  |  |  |  |  |  |  | 
| 13 |  |  |  |  |  |  | Paws::CodePipeline::ListPipelineExecutionsOutput | 
| 14 |  |  |  |  |  |  |  | 
| 15 |  |  |  |  |  |  | =head1 ATTRIBUTES | 
| 16 |  |  |  |  |  |  |  | 
| 17 |  |  |  |  |  |  |  | 
| 18 |  |  |  |  |  |  | =head2 NextToken => Str | 
| 19 |  |  |  |  |  |  |  | 
| 20 |  |  |  |  |  |  | A token that can be used in the next list pipeline executions call to | 
| 21 |  |  |  |  |  |  | return the next set of pipeline executions. To view all items in the | 
| 22 |  |  |  |  |  |  | list, continue to call this operation with each subsequent token until | 
| 23 |  |  |  |  |  |  | no more nextToken values are returned. | 
| 24 |  |  |  |  |  |  |  | 
| 25 |  |  |  |  |  |  |  | 
| 26 |  |  |  |  |  |  | =head2 PipelineExecutionSummaries => ArrayRef[L<Paws::CodePipeline::PipelineExecutionSummary>] | 
| 27 |  |  |  |  |  |  |  | 
| 28 |  |  |  |  |  |  | A list of executions in the history of a pipeline. | 
| 29 |  |  |  |  |  |  |  | 
| 30 |  |  |  |  |  |  |  | 
| 31 |  |  |  |  |  |  | =head2 _request_id => Str | 
| 32 |  |  |  |  |  |  |  | 
| 33 |  |  |  |  |  |  |  | 
| 34 |  |  |  |  |  |  | =cut | 
| 35 |  |  |  |  |  |  |  | 
| 36 |  |  |  |  |  |  | 1; |