File Coverage

blib/lib/Paws/Inspector/ListAssessmentRunsResponse.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::Inspector::ListAssessmentRunsResponse;
3 1     1   894 use Moose;
  1         4  
  1         15  
4             has AssessmentRunArns => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'assessmentRunArns' , required => 1);
5             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::Inspector::ListAssessmentRunsResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 B<REQUIRED> AssessmentRunArns => ArrayRef[Str|Undef]
19              
20             A list of ARNs that specifies the assessment runs that are returned by
21             the action.
22              
23              
24             =head2 NextToken => Str
25              
26             When a response is generated, if there is more data to be listed, this
27             parameter is present in the response and contains the value to use for
28             the B<nextToken> parameter in a subsequent pagination request. If there
29             is no more data to be listed, this parameter is set to null.
30              
31              
32             =head2 _request_id => Str
33              
34              
35             =cut
36              
37             1;