File Coverage

blib/lib/Paws/S3/GetBucketPolicyOutput.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::S3::GetBucketPolicyOutput;
3 1     1   559 use Moose;
  1     1   3  
  1         8  
  1         319  
  1         2  
  1         6  
4             has Policy => (is => 'ro', isa => 'Str');
5              
6 1     1   6913 use MooseX::ClassAttribute;
  1     1   3  
  1         11  
  1         5482  
  1         2  
  1         5  
7             class_has _payload => (is => 'ro', default => 'Policy');
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::S3::GetBucketPolicyOutput
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 Policy => Str
21              
22             The bucket policy as a JSON document.
23              
24              
25              
26              
27             =cut
28