File Coverage

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