File Coverage

blib/lib/Paws/SMS/ReplicationJob.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::SMS::ReplicationJob;
2 1     1   651 use Moose;
  1         3  
  1         10  
3             has Description => (is => 'ro', isa => 'Str', request_name => 'description', traits => ['NameInRequest']);
4             has Frequency => (is => 'ro', isa => 'Int', request_name => 'frequency', traits => ['NameInRequest']);
5             has LatestAmiId => (is => 'ro', isa => 'Str', request_name => 'latestAmiId', traits => ['NameInRequest']);
6             has LicenseType => (is => 'ro', isa => 'Str', request_name => 'licenseType', traits => ['NameInRequest']);
7             has NextReplicationRunStartTime => (is => 'ro', isa => 'Str', request_name => 'nextReplicationRunStartTime', traits => ['NameInRequest']);
8             has ReplicationJobId => (is => 'ro', isa => 'Str', request_name => 'replicationJobId', traits => ['NameInRequest']);
9             has ReplicationRunList => (is => 'ro', isa => 'ArrayRef[Paws::SMS::ReplicationRun]', request_name => 'item', request_name => 'replicationRunList', traits => ['NameInRequest','NameInRequest']);
10             has RoleName => (is => 'ro', isa => 'Str', request_name => 'roleName', traits => ['NameInRequest']);
11             has SeedReplicationTime => (is => 'ro', isa => 'Str', request_name => 'seedReplicationTime', traits => ['NameInRequest']);
12             has ServerId => (is => 'ro', isa => 'Str', request_name => 'serverId', traits => ['NameInRequest']);
13             has ServerType => (is => 'ro', isa => 'Str', request_name => 'serverType', traits => ['NameInRequest']);
14             has State => (is => 'ro', isa => 'Str', request_name => 'state', traits => ['NameInRequest']);
15             has StatusMessage => (is => 'ro', isa => 'Str', request_name => 'statusMessage', traits => ['NameInRequest']);
16             has VmServer => (is => 'ro', isa => 'Paws::SMS::VmServer', request_name => 'vmServer', traits => ['NameInRequest']);
17             1;
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::SMS::ReplicationJob
24              
25             =head1 USAGE
26              
27             This class represents one of two things:
28              
29             =head3 Arguments in a call to a service
30              
31             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
32             Each attribute should be used as a named argument in the calls that expect this type of object.
33              
34             As an example, if Att1 is expected to be a Paws::SMS::ReplicationJob object:
35              
36             $service_obj->Method(Att1 => { Description => $value, ..., VmServer => $value });
37              
38             =head3 Results returned from an API call
39              
40             Use accessors for each attribute. If Att1 is expected to be an Paws::SMS::ReplicationJob object:
41              
42             $result = $service_obj->Method(...);
43             $result->Att1->Description
44              
45             =head1 DESCRIPTION
46              
47             Object representing a Replication Job
48              
49             =head1 ATTRIBUTES
50              
51              
52             =head2 Description => Str
53              
54            
55              
56              
57             =head2 Frequency => Int
58              
59            
60              
61              
62             =head2 LatestAmiId => Str
63              
64            
65              
66              
67             =head2 LicenseType => Str
68              
69            
70              
71              
72             =head2 NextReplicationRunStartTime => Str
73              
74            
75              
76              
77             =head2 ReplicationJobId => Str
78              
79            
80              
81              
82             =head2 ReplicationRunList => ArrayRef[L<Paws::SMS::ReplicationRun>]
83              
84            
85              
86              
87             =head2 RoleName => Str
88              
89            
90              
91              
92             =head2 SeedReplicationTime => Str
93              
94            
95              
96              
97             =head2 ServerId => Str
98              
99            
100              
101              
102             =head2 ServerType => Str
103              
104            
105              
106              
107             =head2 State => Str
108              
109            
110              
111              
112             =head2 StatusMessage => Str
113              
114            
115              
116              
117             =head2 VmServer => L<Paws::SMS::VmServer>
118              
119            
120              
121              
122              
123             =head1 SEE ALSO
124              
125             This class forms part of L<Paws>, describing an object used in L<Paws::SMS>
126              
127             =head1 BUGS and CONTRIBUTIONS
128              
129             The source code is located here: https://github.com/pplu/aws-sdk-perl
130              
131             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
132              
133             =cut
134