File Coverage

blib/lib/Paws/SSM/AssociationDescription.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::AssociationDescription;
2 1     1   628 use Moose;
  1         4  
  1         11  
3             has AssociationId => (is => 'ro', isa => 'Str');
4             has AssociationName => (is => 'ro', isa => 'Str');
5             has AssociationVersion => (is => 'ro', isa => 'Str');
6             has Date => (is => 'ro', isa => 'Str');
7             has DocumentVersion => (is => 'ro', isa => 'Str');
8             has InstanceId => (is => 'ro', isa => 'Str');
9             has LastExecutionDate => (is => 'ro', isa => 'Str');
10             has LastSuccessfulExecutionDate => (is => 'ro', isa => 'Str');
11             has LastUpdateAssociationDate => (is => 'ro', isa => 'Str');
12             has Name => (is => 'ro', isa => 'Str');
13             has OutputLocation => (is => 'ro', isa => 'Paws::SSM::InstanceAssociationOutputLocation');
14             has Overview => (is => 'ro', isa => 'Paws::SSM::AssociationOverview');
15             has Parameters => (is => 'ro', isa => 'Paws::SSM::Parameters');
16             has ScheduleExpression => (is => 'ro', isa => 'Str');
17             has Status => (is => 'ro', isa => 'Paws::SSM::AssociationStatus');
18             has Targets => (is => 'ro', isa => 'ArrayRef[Paws::SSM::Target]');
19             1;
20              
21             ### main pod documentation begin ###
22              
23             =head1 NAME
24              
25             Paws::SSM::AssociationDescription
26              
27             =head1 USAGE
28              
29             This class represents one of two things:
30              
31             =head3 Arguments in a call to a service
32              
33             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
34             Each attribute should be used as a named argument in the calls that expect this type of object.
35              
36             As an example, if Att1 is expected to be a Paws::SSM::AssociationDescription object:
37              
38             $service_obj->Method(Att1 => { AssociationId => $value, ..., Targets => $value });
39              
40             =head3 Results returned from an API call
41              
42             Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::AssociationDescription object:
43              
44             $result = $service_obj->Method(...);
45             $result->Att1->AssociationId
46              
47             =head1 DESCRIPTION
48              
49             Describes the parameters for a document.
50              
51             =head1 ATTRIBUTES
52              
53              
54             =head2 AssociationId => Str
55              
56             The association ID.
57              
58              
59             =head2 AssociationName => Str
60              
61             The association name.
62              
63              
64             =head2 AssociationVersion => Str
65              
66             The association version.
67              
68              
69             =head2 Date => Str
70              
71             The date when the association was made.
72              
73              
74             =head2 DocumentVersion => Str
75              
76             The document version.
77              
78              
79             =head2 InstanceId => Str
80              
81             The ID of the instance.
82              
83              
84             =head2 LastExecutionDate => Str
85              
86             The date on which the association was last run.
87              
88              
89             =head2 LastSuccessfulExecutionDate => Str
90              
91             The last date on which the association was successfully run.
92              
93              
94             =head2 LastUpdateAssociationDate => Str
95              
96             The date when the association was last updated.
97              
98              
99             =head2 Name => Str
100              
101             The name of the Systems Manager document.
102              
103              
104             =head2 OutputLocation => L<Paws::SSM::InstanceAssociationOutputLocation>
105              
106             An Amazon S3 bucket where you want to store the output details of the
107             request.
108              
109              
110             =head2 Overview => L<Paws::SSM::AssociationOverview>
111              
112             Information about the association.
113              
114              
115             =head2 Parameters => L<Paws::SSM::Parameters>
116              
117             A description of the parameters for a document.
118              
119              
120             =head2 ScheduleExpression => Str
121              
122             A cron expression that specifies a schedule when the association runs.
123              
124              
125             =head2 Status => L<Paws::SSM::AssociationStatus>
126              
127             The association status.
128              
129              
130             =head2 Targets => ArrayRef[L<Paws::SSM::Target>]
131              
132             The instances targeted by the request.
133              
134              
135              
136             =head1 SEE ALSO
137              
138             This class forms part of L<Paws>, describing an object used in L<Paws::SSM>
139              
140             =head1 BUGS and CONTRIBUTIONS
141              
142             The source code is located here: https://github.com/pplu/aws-sdk-perl
143              
144             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
145              
146             =cut
147