File Coverage

blib/lib/Paws/OpsWorksCM/DescribeNodeAssociationStatusResponse.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::OpsWorksCM::DescribeNodeAssociationStatusResponse;
3 1     1   450 use Moose;
  1         2  
  1         9  
4             has NodeAssociationStatus => (is => 'ro', isa => 'Str');
5              
6             has _request_id => (is => 'ro', isa => 'Str');
7              
8             ### main pod documentation begin ###
9              
10             =head1 NAME
11              
12             Paws::OpsWorksCM::DescribeNodeAssociationStatusResponse
13              
14             =head1 ATTRIBUTES
15              
16              
17             =head2 NodeAssociationStatus => Str
18              
19             The status of the association or disassociation request.
20              
21             B<Possible values:>
22              
23             =over
24              
25             =item *
26              
27             C<SUCCESS>: The association or disassociation succeeded.
28              
29             =item *
30              
31             C<FAILED>: The association or disassociation failed.
32              
33             =item *
34              
35             C<IN_PROGRESS>: The association or disassociation is still in progress.
36              
37             =back
38              
39              
40             Valid values are: C<"SUCCESS">, C<"FAILED">, C<"IN_PROGRESS">
41             =head2 _request_id => Str
42              
43              
44             =cut
45              
46             1;