blib/lib/AWS/CloudFront/S3Origin.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 AWS::CloudFront::S3Origin; | ||||||
3 | |||||||
4 | 1 | 1 | 6 | use VSO; | |||
1 | 3 | ||||||
1 | 6 | ||||||
5 | |||||||
6 | has 'DNSName' => ( | ||||||
7 | is => 'ro', | ||||||
8 | isa => 'Str', | ||||||
9 | required => 1, | ||||||
10 | ); | ||||||
11 | |||||||
12 | has 'OriginAccessIdentity' => ( | ||||||
13 | is => 'ro', | ||||||
14 | isa => 'Str', | ||||||
15 | required => 0, | ||||||
16 | ); | ||||||
17 | |||||||
18 | 1;# return true: | ||||||
19 |