File Coverage

blib/lib/Paws/Route53/ListTrafficPoliciesResponse.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 Paws::Route53::ListTrafficPoliciesResponse;
3 1     1   527 use Moose;
  1         2  
  1         6  
4             has IsTruncated => (is => 'ro', isa => 'Bool', required => 1);
5             has MaxItems => (is => 'ro', isa => 'Str', required => 1);
6             has TrafficPolicyIdMarker => (is => 'ro', isa => 'Str', required => 1);
7             has TrafficPolicySummaries => (is => 'ro', isa => 'ArrayRef[Paws::Route53::TrafficPolicySummary]', required => 1);
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::Route53::ListTrafficPoliciesResponse
17              
18             =head1 ATTRIBUTES
19              
20              
21             =head2 B<REQUIRED> IsTruncated => Bool
22              
23             A flag that indicates whether there are more traffic policies to be
24             listed. If the response was truncated, you can get the next group of
25             traffic policies by submitting another C<ListTrafficPolicies> request
26             and specifying the value of C<TrafficPolicyIdMarker> in the
27             C<TrafficPolicyIdMarker> request parameter.
28              
29              
30              
31             =head2 B<REQUIRED> MaxItems => Str
32              
33             The value that you specified for the C<MaxItems> parameter in the
34             C<ListTrafficPolicies> request that produced the current response.
35              
36              
37              
38             =head2 B<REQUIRED> TrafficPolicyIdMarker => Str
39              
40             If the value of C<IsTruncated> is C<true>, C<TrafficPolicyIdMarker> is
41             the ID of the first traffic policy in the next group of C<MaxItems>
42             traffic policies.
43              
44              
45              
46             =head2 B<REQUIRED> TrafficPolicySummaries => ArrayRef[L<Paws::Route53::TrafficPolicySummary>]
47              
48             A list that contains one C<TrafficPolicySummary> element for each
49             traffic policy that was created by the current AWS account.
50              
51              
52              
53              
54             =cut
55