File Coverage

blib/lib/Paws/SMS/UpdateReplicationJob.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::SMS::UpdateReplicationJob;
3 1     1   747 use Moose;
  1         4  
  1         12  
4             has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description' );
5             has Frequency => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'frequency' );
6             has LicenseType => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'licenseType' );
7             has NextReplicationRunStartTime => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextReplicationRunStartTime' );
8             has ReplicationJobId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'replicationJobId' , required => 1);
9             has RoleName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'roleName' );
10              
11 1     1   7659 use MooseX::ClassAttribute;
  1         4  
  1         13  
12              
13             class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateReplicationJob');
14             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::SMS::UpdateReplicationJobResponse');
15             class_has _result_key => (isa => 'Str', is => 'ro');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::SMS::UpdateReplicationJob - Arguments for method UpdateReplicationJob on Paws::SMS
23              
24             =head1 DESCRIPTION
25              
26             This class represents the parameters used for calling the method UpdateReplicationJob on the
27             AWS Server Migration Service service. Use the attributes of this class
28             as arguments to method UpdateReplicationJob.
29              
30             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateReplicationJob.
31              
32             As an example:
33              
34             $service_obj->UpdateReplicationJob(Att1 => $value1, Att2 => $value2, ...);
35              
36             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.
37              
38             =head1 ATTRIBUTES
39              
40              
41             =head2 Description => Str
42              
43              
44              
45              
46              
47             =head2 Frequency => Int
48              
49              
50              
51              
52              
53             =head2 LicenseType => Str
54              
55              
56              
57             Valid values are: C<"AWS">, C<"BYOL">
58              
59             =head2 NextReplicationRunStartTime => Str
60              
61              
62              
63              
64              
65             =head2 B<REQUIRED> ReplicationJobId => Str
66              
67              
68              
69              
70              
71             =head2 RoleName => Str
72              
73              
74              
75              
76              
77              
78             =head1 SEE ALSO
79              
80             This class forms part of L<Paws>, documenting arguments for method UpdateReplicationJob in L<Paws::SMS>
81              
82             =head1 BUGS and CONTRIBUTIONS
83              
84             The source code is located here: https://github.com/pplu/aws-sdk-perl
85              
86             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
87              
88             =cut
89