| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::S3::GetBucketVersioningOutput; |
|
3
|
1
|
|
|
1
|
|
863
|
use Moose; |
|
|
1
|
|
|
|
|
4
|
|
|
|
1
|
|
|
|
|
13
|
|
|
4
|
|
|
|
|
|
|
has MFADelete => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'MfaDelete'); |
|
5
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Str'); |
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
|
8
|
|
|
|
|
|
|
1; |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::S3::GetBucketVersioningOutput |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 MFADelete => Str |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Specifies whether MFA delete is enabled in the bucket versioning |
|
22
|
|
|
|
|
|
|
configuration. This element is only returned if the bucket has been |
|
23
|
|
|
|
|
|
|
configured with MFA delete. If the bucket has never been so configured, |
|
24
|
|
|
|
|
|
|
this element is not returned. |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Valid values are: C<"Enabled">, C<"Disabled"> |
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 Status => Str |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
The versioning state of the bucket. |
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Valid values are: C<"Enabled">, C<"Suspended"> |
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=cut |
|
36
|
|
|
|
|
|
|
|