File Coverage

blib/lib/Paws/SSM/AssociationVersionInfo.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::AssociationVersionInfo;
2 1     1   295 use Moose;
  1         3  
  1         6  
3             has AssociationId => (is => 'ro', isa => 'Str');
4             has AssociationName => (is => 'ro', isa => 'Str');
5             has AssociationVersion => (is => 'ro', isa => 'Str');
6             has CreatedDate => (is => 'ro', isa => 'Str');
7             has DocumentVersion => (is => 'ro', isa => 'Str');
8             has Name => (is => 'ro', isa => 'Str');
9             has OutputLocation => (is => 'ro', isa => 'Paws::SSM::InstanceAssociationOutputLocation');
10             has Parameters => (is => 'ro', isa => 'Paws::SSM::Parameters');
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::AssociationVersionInfo
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::AssociationVersionInfo 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::AssociationVersionInfo object:
37              
38             $result = $service_obj->Method(...);
39             $result->Att1->AssociationId
40              
41             =head1 DESCRIPTION
42              
43             Information about the association version.
44              
45             =head1 ATTRIBUTES
46              
47              
48             =head2 AssociationId => Str
49              
50             The ID created by the system when the association was created.
51              
52              
53             =head2 AssociationName => Str
54              
55             The name specified for the association version when the association
56             version was created.
57              
58              
59             =head2 AssociationVersion => Str
60              
61             The association version.
62              
63              
64             =head2 CreatedDate => Str
65              
66             The date the association version was created.
67              
68              
69             =head2 DocumentVersion => Str
70              
71             The version of a Systems Manager document used when the association
72             version was created.
73              
74              
75             =head2 Name => Str
76              
77             The name specified when the association was created.
78              
79              
80             =head2 OutputLocation => L<Paws::SSM::InstanceAssociationOutputLocation>
81              
82             The location in Amazon S3 specified for the association when the
83             association version was created.
84              
85              
86             =head2 Parameters => L<Paws::SSM::Parameters>
87              
88             Parameters specified when the association version was created.
89              
90              
91             =head2 ScheduleExpression => Str
92              
93             The cron or rate schedule specified for the association when the
94             association version was created.
95              
96              
97             =head2 Targets => ArrayRef[L<Paws::SSM::Target>]
98              
99             The targets specified for the association when the association version
100             was created.
101              
102              
103              
104             =head1 SEE ALSO
105              
106             This class forms part of L<Paws>, describing an object used in L<Paws::SSM>
107              
108             =head1 BUGS and CONTRIBUTIONS
109              
110             The source code is located here: https://github.com/pplu/aws-sdk-perl
111              
112             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
113              
114             =cut
115