File Coverage

blib/lib/Paws/ECS/ListTaskDefinitionsResponse.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::ECS::ListTaskDefinitionsResponse;
3 1     1   642 use Moose;
  1         3  
  1         11  
4             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
5             has TaskDefinitionArns => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'taskDefinitionArns' );
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::ECS::ListTaskDefinitionsResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 NextToken => Str
19              
20             The C<nextToken> value to include in a future C<ListTaskDefinitions>
21             request. When the results of a C<ListTaskDefinitions> request exceed
22             C<maxResults>, this value can be used to retrieve the next page of
23             results. This value is C<null> when there are no more results to
24             return.
25              
26              
27             =head2 TaskDefinitionArns => ArrayRef[Str|Undef]
28              
29             The list of task definition Amazon Resource Name (ARN) entries for the
30             C<ListTaskDefinitions> request.
31              
32              
33             =head2 _request_id => Str
34              
35              
36             =cut
37              
38             1;