File Coverage

blib/lib/Paws/StorageGateway/ListFileSharesOutput.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::StorageGateway::ListFileSharesOutput;
3 1     1   595 use Moose;
  1         2  
  1         9  
4             has FileShareInfoList => (is => 'ro', isa => 'ArrayRef[Paws::StorageGateway::FileShareInfo]');
5             has Marker => (is => 'ro', isa => 'Str');
6             has NextMarker => (is => 'ro', isa => 'Str');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::StorageGateway::ListFileSharesOutput
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 FileShareInfoList => ArrayRef[L<Paws::StorageGateway::FileShareInfo>]
20              
21             An array of information about the file gateway's file shares.
22              
23              
24             =head2 Marker => Str
25              
26             If the request includes C<Marker>, the response returns that value in
27             this field.
28              
29              
30             =head2 NextMarker => Str
31              
32             If a value is present, there are more file shares to return. In a
33             subsequent request, use C<NextMarker> as the value for C<Marker> to
34             retrieve the next set of file shares.
35              
36              
37             =head2 _request_id => Str
38              
39              
40             =cut
41              
42             1;