File Coverage

blib/lib/Paws/CodeDeploy/DeleteDeploymentGroupOutput.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::DeleteDeploymentGroupOutput;
3 1     1   412 use Moose;
  1         3  
  1         11  
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::DeleteDeploymentGroupOutput
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             Amazon EC2 instances in the Auto Scaling group. If the output contains
23             data, AWS CodeDeploy could not remove some Auto Scaling lifecycle event
24             hooks from the Amazon EC2 instances in the Auto Scaling group.
25              
26              
27             =head2 _request_id => Str
28              
29              
30             =cut
31              
32             1;