File Coverage

blib/lib/Paws/CodeCommit/TestRepositoryTriggersOutput.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::CodeCommit::TestRepositoryTriggersOutput;
3 1     1   595 use Moose;
  1         3  
  1         8  
4             has FailedExecutions => (is => 'ro', isa => 'ArrayRef[Paws::CodeCommit::RepositoryTriggerExecutionFailure]', traits => ['NameInRequest'], request_name => 'failedExecutions' );
5             has SuccessfulExecutions => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'successfulExecutions' );
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::CodeCommit::TestRepositoryTriggersOutput
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 FailedExecutions => ArrayRef[L<Paws::CodeCommit::RepositoryTriggerExecutionFailure>]
19              
20             The list of triggers that were not able to be tested. This list
21             provides the names of the triggers that could not be tested, separated
22             by commas.
23              
24              
25             =head2 SuccessfulExecutions => ArrayRef[Str|Undef]
26              
27             The list of triggers that were successfully tested. This list provides
28             the names of the triggers that were successfully tested, separated by
29             commas.
30              
31              
32             =head2 _request_id => Str
33              
34              
35             =cut
36              
37             1;