| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Greengrass::GetDeploymentStatusResponse; |
|
3
|
1
|
|
|
1
|
|
594
|
use Moose; |
|
|
1
|
|
|
|
|
5
|
|
|
|
1
|
|
|
|
|
14
|
|
|
4
|
|
|
|
|
|
|
has DeploymentStatus => (is => 'ro', isa => 'Str'); |
|
5
|
|
|
|
|
|
|
has DeploymentType => (is => 'ro', isa => 'Str'); |
|
6
|
|
|
|
|
|
|
has ErrorDetails => (is => 'ro', isa => 'ArrayRef[Paws::Greengrass::ErrorDetail]'); |
|
7
|
|
|
|
|
|
|
has ErrorMessage => (is => 'ro', isa => 'Str'); |
|
8
|
|
|
|
|
|
|
has UpdatedAt => (is => 'ro', isa => 'Str'); |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
11
|
|
|
|
|
|
|
1; |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
|
16
|
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::Greengrass::GetDeploymentStatusResponse |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 DeploymentStatus => Str |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Status of the deployment. |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 DeploymentType => Str |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The type of the deployment. |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Valid values are: C<"NewDeployment">, C<"Redeployment">, C<"ResetDeployment">, C<"ForceResetDeployment"> |
|
32
|
|
|
|
|
|
|
=head2 ErrorDetails => ArrayRef[L<Paws::Greengrass::ErrorDetail>] |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The error Details |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 ErrorMessage => Str |
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Error Message |
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 UpdatedAt => Str |
|
43
|
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Last time the deployment status was updated. |
|
45
|
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
48
|
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=cut |
|
51
|
|
|
|
|
|
|
|