line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::S3::LifecycleExpiration; |
2
|
1
|
|
|
1
|
|
273
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
3
|
|
|
|
|
|
|
has Date => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has Days => (is => 'ro', isa => 'Int'); |
5
|
|
|
|
|
|
|
has ExpiredObjectDeleteMarker => (is => 'ro', isa => 'Bool'); |
6
|
|
|
|
|
|
|
1; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
### main pod documentation begin ### |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
=head1 NAME |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
Paws::S3::LifecycleExpiration |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 USAGE |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
This class represents one of two things: |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
21
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::S3::LifecycleExpiration object: |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { Date => $value, ..., ExpiredObjectDeleteMarker => $value }); |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head3 Results returned from an API call |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::S3::LifecycleExpiration object: |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
32
|
|
|
|
|
|
|
$result->Att1->Date |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
This class has no description |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head2 Date => Str |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Indicates at what date the object is to be moved or deleted. Should be |
44
|
|
|
|
|
|
|
in GMT ISO 8601 Format. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 Days => Int |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
Indicates the lifetime, in days, of the objects that are subject to the |
50
|
|
|
|
|
|
|
rule. The value must be a non-zero positive integer. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head2 ExpiredObjectDeleteMarker => Bool |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
Indicates whether Amazon S3 will remove a delete marker with no |
56
|
|
|
|
|
|
|
noncurrent versions. If set to true, the delete marker will be expired; |
57
|
|
|
|
|
|
|
if set to false the policy takes no action. This cannot be specified |
58
|
|
|
|
|
|
|
with Days or Date in a Lifecycle Expiration Policy. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head1 SEE ALSO |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::S3> |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=cut |
73
|
|
|
|
|
|
|
|