File Coverage

blib/lib/Paws/EFS/DescribeMountTargetsResponse.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::EFS::DescribeMountTargetsResponse;
3 1     1   973 use Moose;
  1         6  
  1         13  
4             has Marker => (is => 'ro', isa => 'Str');
5             has MountTargets => (is => 'ro', isa => 'ArrayRef[Paws::EFS::MountTargetDescription]');
6             has NextMarker => (is => 'ro', isa => 'Str');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::EFS::DescribeMountTargetsResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 Marker => Str
21              
22             If the request included the C<Marker>, the response returns that value
23             in this field.
24              
25              
26             =head2 MountTargets => ArrayRef[L<Paws::EFS::MountTargetDescription>]
27              
28             Returns the file system's mount targets as an array of
29             C<MountTargetDescription> objects.
30              
31              
32             =head2 NextMarker => Str
33              
34             If a value is present, there are more mount targets to return. In a
35             subsequent request, you can provide C<Marker> in your request with this
36             value to retrieve the next set of mount targets.
37              
38              
39             =head2 _request_id => Str
40              
41              
42             =cut
43