line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::EFS::DescribeTagsResponse; |
3
|
1
|
|
|
1
|
|
347
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has NextMarker => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has Tags => (is => 'ro', isa => 'ArrayRef[Paws::EFS::Tag]', required => 1); |
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::DescribeTagsResponse |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 Marker => Str |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
If the request included a C<Marker>, the response returns that value in |
23
|
|
|
|
|
|
|
this field. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 NextMarker => Str |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
If a value is present, there are more tags to return. In a subsequent |
29
|
|
|
|
|
|
|
request, you can provide the value of C<NextMarker> as the value of the |
30
|
|
|
|
|
|
|
C<Marker> parameter in your next request to retrieve the next set of |
31
|
|
|
|
|
|
|
tags. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 B<REQUIRED> Tags => ArrayRef[L<Paws::EFS::Tag>] |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Returns tags associated with the file system as an array of C<Tag> |
37
|
|
|
|
|
|
|
objects. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 _request_id => Str |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=cut |
44
|
|
|
|
|
|
|
|