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