File Coverage

blib/lib/Paws/CodeDeploy/UpdateDeploymentGroupOutput.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::UpdateDeploymentGroupOutput;
3 1     1   650 use Moose;
  1         4  
  1         9  
4             has HooksNotCleanedUp => (is => 'ro', isa => 'ArrayRef[Paws::CodeDeploy::AutoScalingGroup]', traits => ['NameInRequest'], request_name => 'hooksNotCleanedUp' );
5              
6             has _request_id => (is => 'ro', isa => 'Str');
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::CodeDeploy::UpdateDeploymentGroupOutput
13              
14             =head1 ATTRIBUTES
15              
16              
17             =head2 HooksNotCleanedUp => ArrayRef[L<Paws::CodeDeploy::AutoScalingGroup>]
18              
19             If the output contains no data, and the corresponding deployment group
20             contained at least one Auto Scaling group, AWS CodeDeploy successfully
21             removed all corresponding Auto Scaling lifecycle event hooks from the
22             AWS account. If the output contains data, AWS CodeDeploy could not
23             remove some Auto Scaling lifecycle event hooks from the AWS account.
24              
25              
26             =head2 _request_id => Str
27              
28              
29             =cut
30              
31             1;