File Coverage

blib/lib/Paws/Greengrass/GetDeploymentStatusResponse.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::Greengrass::GetDeploymentStatusResponse;
3 1     1   762 use Moose;
  1         5  
  1         11  
4             has DeploymentStatus => (is => 'ro', isa => 'Str');
5             has ErrorMessage => (is => 'ro', isa => 'Str');
6             has UpdatedAt => (is => 'ro', isa => 'Str');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::Greengrass::GetDeploymentStatusResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 DeploymentStatus => Str
21              
22             Status of the deployment.
23              
24              
25             =head2 ErrorMessage => Str
26              
27             Error Message
28              
29              
30             =head2 UpdatedAt => Str
31              
32             Last time the deployment status was updated.
33              
34              
35             =head2 _request_id => Str
36              
37              
38             =cut
39