line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::SSM::CreateAssociationBatchRequestEntry; |
2
|
1
|
|
|
1
|
|
633
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
10
|
|
3
|
|
|
|
|
|
|
has DocumentVersion => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has InstanceId => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has OutputLocation => (is => 'ro', isa => 'Paws::SSM::InstanceAssociationOutputLocation'); |
7
|
|
|
|
|
|
|
has Parameters => (is => 'ro', isa => 'Paws::SSM::Parameters'); |
8
|
|
|
|
|
|
|
has ScheduleExpression => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has Targets => (is => 'ro', isa => 'ArrayRef[Paws::SSM::Target]'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::SSM::CreateAssociationBatchRequestEntry |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 USAGE |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
This class represents one of two things: |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
25
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::SSM::CreateAssociationBatchRequestEntry object: |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { DocumentVersion => $value, ..., Targets => $value }); |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head3 Results returned from an API call |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::CreateAssociationBatchRequestEntry object: |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
36
|
|
|
|
|
|
|
$result->Att1->DocumentVersion |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 DESCRIPTION |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Describes the association of a Systems Manager document and an |
41
|
|
|
|
|
|
|
instance. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 DocumentVersion => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
The document version. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 InstanceId => Str |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
The ID of the instance. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 B<REQUIRED> Name => Str |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The name of the configuration document. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=head2 OutputLocation => L<Paws::SSM::InstanceAssociationOutputLocation> |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
An Amazon S3 bucket where you want to store the results of this |
64
|
|
|
|
|
|
|
request. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head2 Parameters => L<Paws::SSM::Parameters> |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
A description of the parameters for a document. |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head2 ScheduleExpression => Str |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
A cron expression that specifies a schedule when the association runs. |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head2 Targets => ArrayRef[L<Paws::SSM::Target>] |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
The instances targeted by the request. |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head1 SEE ALSO |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::SSM> |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
=cut |
94
|
|
|
|
|
|
|
|