File Coverage

blib/lib/Paws/Shield/ListProtectionsResponse.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::Shield::ListProtectionsResponse;
3 1     1   630 use Moose;
  1         3  
  1         9  
4             has NextToken => (is => 'ro', isa => 'Str');
5             has Protections => (is => 'ro', isa => 'ArrayRef[Paws::Shield::Protection]');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::Shield::ListProtectionsResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 NextToken => Str
19              
20             If you specify a value for C<MaxResults> and you have more Protections
21             than the value of MaxResults, AWS Shield Advanced returns a NextToken
22             value in the response that allows you to list another group of
23             Protections. For the second and subsequent ListProtections requests,
24             specify the value of NextToken from the previous response to get
25             information about another batch of Protections.
26              
27              
28             =head2 Protections => ArrayRef[L<Paws::Shield::Protection>]
29              
30             The array of enabled Protection objects.
31              
32              
33             =head2 _request_id => Str
34              
35              
36             =cut
37              
38             1;