File Coverage

blib/lib/Cfn/Resource/AWS/EC2/Volume.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     2   1312 use Moose::Util::TypeConstraints;
  2         6  
  2         25  
2              
3             coerce 'Cfn::Resource::Properties::AWS::EC2::Volume',
4             from 'HashRef',
5             via { Cfn::Resource::Properties::AWS::EC2::Volume->new( %$_ ) };
6              
7             package Cfn::Resource::AWS::EC2::Volume {
8 2     2   4772 use Moose;
  2         6  
  2         22  
9             extends 'Cfn::Resource';
10             has Properties => (isa => 'Cfn::Resource::Properties::AWS::EC2::Volume', is => 'rw', coerce => 1, required => 1);
11             }
12              
13             package Cfn::Resource::Properties::AWS::EC2::Volume {
14 2     2   15440 use Moose;
  2         5  
  2         10  
15 2     2   13402 use MooseX::StrictConstructor;
  2         7  
  2         16  
16             extends 'Cfn::Resource::Properties';
17             has AvailabilityZone => (isa => 'Cfn::Value', is => 'rw', coerce => 1, required => 1);
18             has Iops => (isa => 'Cfn::Value', is => 'rw', coerce => 1);
19             has Size => (isa => 'Cfn::Value', is => 'rw', coerce => 1);
20             has SnapshotId => (isa => 'Cfn::Value', is => 'rw', coerce => 1);
21             has Encrypted => (isa => 'Cfn::Value', is => 'rw', coerce => 1);
22             has Tags => (isa => 'Cfn::Value::Array|Cfn::Value::Function', is => 'rw', coerce => 1);
23             # TODO: VolumeType has a restriction
24             has VolumeType => (isa => 'Cfn::Value', is => 'rw', coerce => 1);
25             }
26              
27             1;