File Coverage

blib/lib/Paws/S3/GetBucketWebsiteOutput.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              
2             package Paws::S3::GetBucketWebsiteOutput;
3 1     1   567 use Moose;
  1         2  
  1         9  
4             has ErrorDocument => (is => 'ro', isa => 'Paws::S3::ErrorDocument');
5             has IndexDocument => (is => 'ro', isa => 'Paws::S3::IndexDocument');
6             has RedirectAllRequestsTo => (is => 'ro', isa => 'Paws::S3::RedirectAllRequestsTo');
7             has RoutingRules => (is => 'ro', isa => 'ArrayRef[Paws::S3::RoutingRule]');
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::S3::GetBucketWebsiteOutput
17              
18             =head1 ATTRIBUTES
19              
20              
21             =head2 ErrorDocument => L<Paws::S3::ErrorDocument>
22              
23              
24              
25              
26              
27             =head2 IndexDocument => L<Paws::S3::IndexDocument>
28              
29              
30              
31              
32              
33             =head2 RedirectAllRequestsTo => L<Paws::S3::RedirectAllRequestsTo>
34              
35              
36              
37              
38              
39             =head2 RoutingRules => ArrayRef[L<Paws::S3::RoutingRule>]
40              
41              
42              
43              
44              
45              
46             =cut
47