File Coverage

blib/lib/Paws/SSM/UpdateAssociation.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::SSM::UpdateAssociation;
3 1     1   712 use Moose;
  1         2  
  1         11  
4             has AssociationId => (is => 'ro', isa => 'Str', required => 1);
5             has DocumentVersion => (is => 'ro', isa => 'Str');
6             has Name => (is => 'ro', isa => 'Str');
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              
12 1     1   7464 use MooseX::ClassAttribute;
  1         4  
  1         12  
13              
14             class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateAssociation');
15             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::SSM::UpdateAssociationResult');
16             class_has _result_key => (isa => 'Str', is => 'ro');
17             1;
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::SSM::UpdateAssociation - Arguments for method UpdateAssociation on Paws::SSM
24              
25             =head1 DESCRIPTION
26              
27             This class represents the parameters used for calling the method UpdateAssociation on the
28             Amazon Simple Systems Manager (SSM) service. Use the attributes of this class
29             as arguments to method UpdateAssociation.
30              
31             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateAssociation.
32              
33             As an example:
34              
35             $service_obj->UpdateAssociation(Att1 => $value1, Att2 => $value2, ...);
36              
37             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
38              
39             =head1 ATTRIBUTES
40              
41              
42             =head2 B<REQUIRED> AssociationId => Str
43              
44             The ID of the association you want to update.
45              
46              
47              
48             =head2 DocumentVersion => Str
49              
50             The document version you want update for the association.
51              
52              
53              
54             =head2 Name => Str
55              
56             The name of the association document.
57              
58              
59              
60             =head2 OutputLocation => L<Paws::SSM::InstanceAssociationOutputLocation>
61              
62             An Amazon S3 bucket where you want to store the results of this
63             request.
64              
65              
66              
67             =head2 Parameters => L<Paws::SSM::Parameters>
68              
69             The parameters you want to update for the association. If you create a
70             parameter using Parameter Store, you can reference the parameter using
71             {{ssm:parameter-name}}
72              
73              
74              
75             =head2 ScheduleExpression => Str
76              
77             The cron expression used to schedule the association that you want to
78             update.
79              
80              
81              
82             =head2 Targets => ArrayRef[L<Paws::SSM::Target>]
83              
84             The targets of the association.
85              
86              
87              
88              
89             =head1 SEE ALSO
90              
91             This class forms part of L<Paws>, documenting arguments for method UpdateAssociation 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