File Coverage

blib/lib/Paws/EC2/DescribeVolumeAttributeResult.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::EC2::DescribeVolumeAttributeResult;
3 1     1   338 use Moose;
  1         3  
  1         6  
4             has AutoEnableIO => (is => 'ro', isa => 'Paws::EC2::AttributeBooleanValue', request_name => 'autoEnableIO', traits => ['NameInRequest',]);
5             has ProductCodes => (is => 'ro', isa => 'ArrayRef[Paws::EC2::ProductCode]', request_name => 'productCodes', traits => ['NameInRequest',]);
6             has VolumeId => (is => 'ro', isa => 'Str', request_name => 'volumeId', traits => ['NameInRequest',]);
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::EC2::DescribeVolumeAttributeResult
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 AutoEnableIO => L<Paws::EC2::AttributeBooleanValue>
21              
22             The state of C<autoEnableIO> attribute.
23              
24              
25             =head2 ProductCodes => ArrayRef[L<Paws::EC2::ProductCode>]
26              
27             A list of product codes.
28              
29              
30             =head2 VolumeId => Str
31              
32             The ID of the volume.
33              
34              
35             =head2 _request_id => Str
36              
37              
38             =cut
39