File Coverage

blib/lib/Paws/SSM/MaintenanceWindowRunCommandParameters.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::MaintenanceWindowRunCommandParameters;
2 1     1   319 use Moose;
  1         3  
  1         7  
3             has Comment => (is => 'ro', isa => 'Str');
4             has DocumentHash => (is => 'ro', isa => 'Str');
5             has DocumentHashType => (is => 'ro', isa => 'Str');
6             has NotificationConfig => (is => 'ro', isa => 'Paws::SSM::NotificationConfig');
7             has OutputS3BucketName => (is => 'ro', isa => 'Str');
8             has OutputS3KeyPrefix => (is => 'ro', isa => 'Str');
9             has Parameters => (is => 'ro', isa => 'Paws::SSM::Parameters');
10             has ServiceRoleArn => (is => 'ro', isa => 'Str');
11             has TimeoutSeconds => (is => 'ro', isa => 'Int');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::SSM::MaintenanceWindowRunCommandParameters
19              
20             =head1 USAGE
21              
22             This class represents one of two things:
23              
24             =head3 Arguments in a call to a service
25              
26             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
27             Each attribute should be used as a named argument in the calls that expect this type of object.
28              
29             As an example, if Att1 is expected to be a Paws::SSM::MaintenanceWindowRunCommandParameters object:
30              
31             $service_obj->Method(Att1 => { Comment => $value, ..., TimeoutSeconds => $value });
32              
33             =head3 Results returned from an API call
34              
35             Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::MaintenanceWindowRunCommandParameters object:
36              
37             $result = $service_obj->Method(...);
38             $result->Att1->Comment
39              
40             =head1 DESCRIPTION
41              
42             The parameters for a RUN_COMMAND task type.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 Comment => Str
48              
49             Information about the command(s) to execute.
50              
51              
52             =head2 DocumentHash => Str
53              
54             The SHA-256 or SHA-1 hash created by the system when the document was
55             created. SHA-1 hashes have been deprecated.
56              
57              
58             =head2 DocumentHashType => Str
59              
60             SHA-256 or SHA-1. SHA-1 hashes have been deprecated.
61              
62              
63             =head2 NotificationConfig => L<Paws::SSM::NotificationConfig>
64              
65             Configurations for sending notifications about command status changes
66             on a per-instance basis.
67              
68              
69             =head2 OutputS3BucketName => Str
70              
71             The name of the Amazon S3 bucket.
72              
73              
74             =head2 OutputS3KeyPrefix => Str
75              
76             The Amazon S3 bucket subfolder.
77              
78              
79             =head2 Parameters => L<Paws::SSM::Parameters>
80              
81             The parameters for the RUN_COMMAND task execution.
82              
83              
84             =head2 ServiceRoleArn => Str
85              
86             The IAM service role to assume during task execution.
87              
88              
89             =head2 TimeoutSeconds => Int
90              
91             If this time is reached and the command has not already started
92             executing, it doesn not execute.
93              
94              
95              
96             =head1 SEE ALSO
97              
98             This class forms part of L<Paws>, describing an object used in L<Paws::SSM>
99              
100             =head1 BUGS and CONTRIBUTIONS
101              
102             The source code is located here: https://github.com/pplu/aws-sdk-perl
103              
104             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
105              
106             =cut
107