File Coverage

blib/lib/Paws/SSM/Association.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::Association;
2 1     1   532 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 DocumentVersion => (is => 'ro', isa => 'Str');
7             has InstanceId => (is => 'ro', isa => 'Str');
8             has LastExecutionDate => (is => 'ro', isa => 'Str');
9             has Name => (is => 'ro', isa => 'Str');
10             has Overview => (is => 'ro', isa => 'Paws::SSM::AssociationOverview');
11             has ScheduleExpression => (is => 'ro', isa => 'Str');
12             has Targets => (is => 'ro', isa => 'ArrayRef[Paws::SSM::Target]');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::SSM::Association
20              
21             =head1 USAGE
22              
23             This class represents one of two things:
24              
25             =head3 Arguments in a call to a service
26              
27             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
28             Each attribute should be used as a named argument in the calls that expect this type of object.
29              
30             As an example, if Att1 is expected to be a Paws::SSM::Association object:
31              
32             $service_obj->Method(Att1 => { AssociationId => $value, ..., Targets => $value });
33              
34             =head3 Results returned from an API call
35              
36             Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::Association object:
37              
38             $result = $service_obj->Method(...);
39             $result->Att1->AssociationId
40              
41             =head1 DESCRIPTION
42              
43             Describes an association of a Systems Manager document and an instance.
44              
45             =head1 ATTRIBUTES
46              
47              
48             =head2 AssociationId => Str
49              
50             The ID created by the system when you create an association. An
51             association is a binding between a document and a set of targets with a
52             schedule.
53              
54              
55             =head2 AssociationName => Str
56              
57             The association name.
58              
59              
60             =head2 AssociationVersion => Str
61              
62             The association version.
63              
64              
65             =head2 DocumentVersion => Str
66              
67             The version of the document used in the association.
68              
69              
70             =head2 InstanceId => Str
71              
72             The ID of the instance.
73              
74              
75             =head2 LastExecutionDate => Str
76              
77             The date on which the association was last run.
78              
79              
80             =head2 Name => Str
81              
82             The name of the Systems Manager document.
83              
84              
85             =head2 Overview => L<Paws::SSM::AssociationOverview>
86              
87             Information about the association.
88              
89              
90             =head2 ScheduleExpression => Str
91              
92             A cron expression that specifies a schedule when the association runs.
93              
94              
95             =head2 Targets => ArrayRef[L<Paws::SSM::Target>]
96              
97             The instances targeted by the request to create an association.
98              
99              
100              
101             =head1 SEE ALSO
102              
103             This class forms part of L<Paws>, describing an object used in L<Paws::SSM>
104              
105             =head1 BUGS and CONTRIBUTIONS
106              
107             The source code is located here: https://github.com/pplu/aws-sdk-perl
108              
109             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
110              
111             =cut
112