File Coverage

blib/lib/Paws/CodeDeploy/DeploymentOverview.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             package Paws::CodeDeploy::DeploymentOverview;
2 1     1   277 use Moose;
  1         3  
  1         6  
3             has Failed => (is => 'ro', isa => 'Int');
4             has InProgress => (is => 'ro', isa => 'Int');
5             has Pending => (is => 'ro', isa => 'Int');
6             has Ready => (is => 'ro', isa => 'Int');
7             has Skipped => (is => 'ro', isa => 'Int');
8             has Succeeded => (is => 'ro', isa => 'Int');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::CodeDeploy::DeploymentOverview
16              
17             =head1 USAGE
18              
19             This class represents one of two things:
20              
21             =head3 Arguments in a call to a service
22              
23             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
24             Each attribute should be used as a named argument in the calls that expect this type of object.
25              
26             As an example, if Att1 is expected to be a Paws::CodeDeploy::DeploymentOverview object:
27              
28             $service_obj->Method(Att1 => { Failed => $value, ..., Succeeded => $value });
29              
30             =head3 Results returned from an API call
31              
32             Use accessors for each attribute. If Att1 is expected to be an Paws::CodeDeploy::DeploymentOverview object:
33              
34             $result = $service_obj->Method(...);
35             $result->Att1->Failed
36              
37             =head1 DESCRIPTION
38              
39             Information about the deployment status of the instances in the
40             deployment.
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 Failed => Int
46              
47             The number of instances in the deployment in a failed state.
48              
49              
50             =head2 InProgress => Int
51              
52             The number of instances in which the deployment is in progress.
53              
54              
55             =head2 Pending => Int
56              
57             The number of instances in the deployment in a pending state.
58              
59              
60             =head2 Ready => Int
61              
62             The number of instances in a replacement environment ready to receive
63             traffic in a blue/green deployment.
64              
65              
66             =head2 Skipped => Int
67              
68             The number of instances in the deployment in a skipped state.
69              
70              
71             =head2 Succeeded => Int
72              
73             The number of instances in the deployment to which revisions have been
74             successfully deployed.
75              
76              
77              
78             =head1 SEE ALSO
79              
80             This class forms part of L<Paws>, describing an object used in L<Paws::CodeDeploy>
81              
82             =head1 BUGS and CONTRIBUTIONS
83              
84             The source code is located here: https://github.com/pplu/aws-sdk-perl
85              
86             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
87              
88             =cut
89