File Coverage

blib/lib/Paws/Route53/ResourceRecord.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             package Paws::Route53::ResourceRecord;
2 1     1   569 use Moose;
  1     1   2  
  1         8  
  1         607  
  1         2  
  1         7  
3             has Value => (is => 'ro', isa => 'Str', required => 1);
4             1;
5              
6             ### main pod documentation begin ###
7              
8             =head1 NAME
9              
10             Paws::Route53::ResourceRecord
11              
12             =head1 USAGE
13              
14             This class represents one of two things:
15              
16             =head3 Arguments in a call to a service
17              
18             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
19             Each attribute should be used as a named argument in the calls that expect this type of object.
20              
21             As an example, if Att1 is expected to be a Paws::Route53::ResourceRecord object:
22              
23             $service_obj->Method(Att1 => { Value => $value, ..., Value => $value });
24              
25             =head3 Results returned from an API call
26              
27             Use accessors for each attribute. If Att1 is expected to be an Paws::Route53::ResourceRecord object:
28              
29             $result = $service_obj->Method(...);
30             $result->Att1->Value
31              
32             =head1 DESCRIPTION
33              
34             Information specific to the resource record.
35              
36             If you're creating an alias resource record set, omit
37             C<ResourceRecord>.
38              
39             =head1 ATTRIBUTES
40              
41              
42             =head2 B<REQUIRED> Value => Str
43              
44             The current or new DNS record value, not to exceed 4,000 characters. In
45             the case of a C<DELETE> action, if the current value does not match the
46             actual value, an error is returned. For descriptions about how to
47             format C<Value> for different record types, see Supported DNS Resource
48             Record Types in the I<Amazon Route 53 Developer Guide>.
49              
50             You can specify more than one value for all record types except
51             C<CNAME> and C<SOA>.
52              
53             If you're creating an alias resource record set, omit C<Value>.
54              
55              
56              
57             =head1 SEE ALSO
58              
59             This class forms part of L<Paws>, describing an object used in L<Paws::Route53>
60              
61             =head1 BUGS and CONTRIBUTIONS
62              
63             The source code is located here: https://github.com/pplu/aws-sdk-perl
64              
65             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
66              
67             =cut
68