File Coverage

blib/lib/Paws/SSM/InstanceAssociationStatusInfo.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             package Paws::SSM::InstanceAssociationStatusInfo;
2 1     1   764 use Moose;
  1         3  
  1         10  
3             has AssociationId => (is => 'ro', isa => 'Str');
4             has AssociationName => (is => 'ro', isa => 'Str');
5             has AssociationVersion => (is => 'ro', isa => 'Str');
6             has DetailedStatus => (is => 'ro', isa => 'Str');
7             has DocumentVersion => (is => 'ro', isa => 'Str');
8             has ErrorCode => (is => 'ro', isa => 'Str');
9             has ExecutionDate => (is => 'ro', isa => 'Str');
10             has ExecutionSummary => (is => 'ro', isa => 'Str');
11             has InstanceId => (is => 'ro', isa => 'Str');
12             has Name => (is => 'ro', isa => 'Str');
13             has OutputUrl => (is => 'ro', isa => 'Paws::SSM::InstanceAssociationOutputUrl');
14             has Status => (is => 'ro', isa => 'Str');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::SSM::InstanceAssociationStatusInfo
22              
23             =head1 USAGE
24              
25             This class represents one of two things:
26              
27             =head3 Arguments in a call to a service
28              
29             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
30             Each attribute should be used as a named argument in the calls that expect this type of object.
31              
32             As an example, if Att1 is expected to be a Paws::SSM::InstanceAssociationStatusInfo object:
33              
34             $service_obj->Method(Att1 => { AssociationId => $value, ..., Status => $value });
35              
36             =head3 Results returned from an API call
37              
38             Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::InstanceAssociationStatusInfo object:
39              
40             $result = $service_obj->Method(...);
41             $result->Att1->AssociationId
42              
43             =head1 DESCRIPTION
44              
45             Status information about the instance association.
46              
47             =head1 ATTRIBUTES
48              
49              
50             =head2 AssociationId => Str
51              
52             The association ID.
53              
54              
55             =head2 AssociationName => Str
56              
57             The name of the association applied to the instance.
58              
59              
60             =head2 AssociationVersion => Str
61              
62             The version of the association applied to the instance.
63              
64              
65             =head2 DetailedStatus => Str
66              
67             Detailed status information about the instance association.
68              
69              
70             =head2 DocumentVersion => Str
71              
72             The association document verions.
73              
74              
75             =head2 ErrorCode => Str
76              
77             An error code returned by the request to create the association.
78              
79              
80             =head2 ExecutionDate => Str
81              
82             The date the instance association executed.
83              
84              
85             =head2 ExecutionSummary => Str
86              
87             Summary information about association execution.
88              
89              
90             =head2 InstanceId => Str
91              
92             The instance ID where the association was created.
93              
94              
95             =head2 Name => Str
96              
97             The name of the association.
98              
99              
100             =head2 OutputUrl => L<Paws::SSM::InstanceAssociationOutputUrl>
101              
102             A URL for an Amazon S3 bucket where you want to store the results of
103             this request.
104              
105              
106             =head2 Status => Str
107              
108             Status information about the instance association.
109              
110              
111              
112             =head1 SEE ALSO
113              
114             This class forms part of L<Paws>, describing an object used in L<Paws::SSM>
115              
116             =head1 BUGS and CONTRIBUTIONS
117              
118             The source code is located here: https://github.com/pplu/aws-sdk-perl
119              
120             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
121              
122             =cut
123