File Coverage

blib/lib/Paws/Route53/ListGeoLocationsResponse.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::Route53::ListGeoLocationsResponse;
3 1     1   493 use Moose;
  1     1   3  
  1         7  
  1         373  
  1         2  
  1         6  
4             has GeoLocationDetailsList => (is => 'ro', isa => 'ArrayRef[Paws::Route53::GeoLocationDetails]', required => 1);
5             has IsTruncated => (is => 'ro', isa => 'Bool', required => 1);
6             has MaxItems => (is => 'ro', isa => 'Str', required => 1);
7             has NextContinentCode => (is => 'ro', isa => 'Str');
8             has NextCountryCode => (is => 'ro', isa => 'Str');
9             has NextSubdivisionCode => (is => 'ro', isa => 'Str');
10              
11             has _request_id => (is => 'ro', isa => 'Str');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::Route53::ListGeoLocationsResponse
19              
20             =head1 ATTRIBUTES
21              
22              
23             =head2 B<REQUIRED> GeoLocationDetailsList => ArrayRef[L<Paws::Route53::GeoLocationDetails>]
24              
25             A complex type that contains one C<GeoLocationDetails> element for each
26             location that Amazon Route 53 supports for geolocation.
27              
28              
29              
30             =head2 B<REQUIRED> IsTruncated => Bool
31              
32             A value that indicates whether more locations remain to be listed after
33             the last location in this response. If so, the value of C<IsTruncated>
34             is C<true>. To get more values, submit another request and include the
35             values of C<NextContinentCode>, C<NextCountryCode>, and
36             C<NextSubdivisionCode> in the C<StartContinentCode>,
37             C<StartCountryCode>, and C<StartSubdivisionCode>, as applicable.
38              
39              
40              
41             =head2 B<REQUIRED> MaxItems => Str
42              
43             The value that you specified for C<MaxItems> in the request.
44              
45              
46              
47             =head2 NextContinentCode => Str
48              
49             If C<IsTruncated> is C<true>, you can make a follow-up request to
50             display more locations. Enter the value of C<NextContinentCode> in the
51             C<StartContinentCode> parameter in another C<ListGeoLocations> request.
52              
53              
54              
55             =head2 NextCountryCode => Str
56              
57             If C<IsTruncated> is C<true>, you can make a follow-up request to
58             display more locations. Enter the value of C<NextCountryCode> in the
59             C<StartCountryCode> parameter in another C<ListGeoLocations> request.
60              
61              
62              
63             =head2 NextSubdivisionCode => Str
64              
65             If C<IsTruncated> is C<true>, you can make a follow-up request to
66             display more locations. Enter the value of C<NextSubdivisionCode> in
67             the C<StartSubdivisionCode> parameter in another C<ListGeoLocations>
68             request.
69              
70              
71              
72              
73             =cut
74