File Coverage

blib/lib/Paws/ElasticBeanstalk/CheckDNSAvailabilityResultMessage.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::ElasticBeanstalk::CheckDNSAvailabilityResultMessage;
3 1     1   498 use Moose;
  1     1   3  
  1         6  
  1         852  
  1         4  
  1         12  
4             has Available => (is => 'ro', isa => 'Bool');
5             has FullyQualifiedCNAME => (is => 'ro', isa => 'Str');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::ElasticBeanstalk::CheckDNSAvailabilityResultMessage
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 Available => Bool
20              
21             Indicates if the specified CNAME is available:
22              
23             =over
24              
25             =item *
26              
27             C<true> : The CNAME is available.
28              
29             =item *
30              
31             C<false> : The CNAME is not available.
32              
33             =back
34              
35              
36              
37             =head2 FullyQualifiedCNAME => Str
38              
39             The fully qualified CNAME to reserve when CreateEnvironment is called
40             with the provided prefix.
41              
42              
43             =head2 _request_id => Str
44              
45              
46             =cut
47