File Coverage

blib/lib/Paws/CodeDeploy/StopDeploymentOutput.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::CodeDeploy::StopDeploymentOutput;
3 1     1   303 use Moose;
  1         3  
  1         5  
4             has Status => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'status' );
5             has StatusMessage => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'statusMessage' );
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::CodeDeploy::StopDeploymentOutput
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 Status => Str
19              
20             The status of the stop deployment operation:
21              
22             =over
23              
24             =item *
25              
26             Pending: The stop operation is pending.
27              
28             =item *
29              
30             Succeeded: The stop operation was successful.
31              
32             =back
33              
34              
35             Valid values are: C<"Pending">, C<"Succeeded">
36             =head2 StatusMessage => Str
37              
38             An accompanying status message.
39              
40              
41             =head2 _request_id => Str
42              
43              
44             =cut
45              
46             1;