File Coverage

blib/lib/Paws/EFS/DescribeMountTargets.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::EFS::DescribeMountTargets;
3 1     1   782 use Moose;
  1         2  
  1         11  
4             has FileSystemId => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'FileSystemId' );
5             has Marker => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'Marker' );
6             has MaxItems => (is => 'ro', isa => 'Int', traits => ['ParamInQuery'], query_name => 'MaxItems' );
7             has MountTargetId => (is => 'ro', isa => 'Str', traits => ['ParamInQuery'], query_name => 'MountTargetId' );
8              
9 1     1   9383 use MooseX::ClassAttribute;
  1         4  
  1         13  
10              
11             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeMountTargets');
12             class_has _api_uri => (isa => 'Str', is => 'ro', default => '/2015-02-01/mount-targets');
13             class_has _api_method => (isa => 'Str', is => 'ro', default => 'GET');
14             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::EFS::DescribeMountTargetsResponse');
15             class_has _result_key => (isa => 'Str', is => 'ro');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::EFS::DescribeMountTargets - Arguments for method DescribeMountTargets on Paws::EFS
23              
24             =head1 DESCRIPTION
25              
26             This class represents the parameters used for calling the method DescribeMountTargets on the
27             Amazon Elastic File System service. Use the attributes of this class
28             as arguments to method DescribeMountTargets.
29              
30             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeMountTargets.
31              
32             As an example:
33              
34             $service_obj->DescribeMountTargets(Att1 => $value1, Att2 => $value2, ...);
35              
36             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
37              
38             =head1 ATTRIBUTES
39              
40              
41             =head2 FileSystemId => Str
42              
43             (Optional) ID of the file system whose mount targets you want to list
44             (String). It must be included in your request if C<MountTargetId> is
45             not included.
46              
47              
48              
49             =head2 Marker => Str
50              
51             (Optional) Opaque pagination token returned from a previous
52             C<DescribeMountTargets> operation (String). If present, it specifies to
53             continue the list from where the previous returning call left off.
54              
55              
56              
57             =head2 MaxItems => Int
58              
59             (Optional) Maximum number of mount targets to return in the response.
60             It must be an integer with a value greater than zero.
61              
62              
63              
64             =head2 MountTargetId => Str
65              
66             (Optional) ID of the mount target that you want to have described
67             (String). It must be included in your request if C<FileSystemId> is not
68             included.
69              
70              
71              
72              
73             =head1 SEE ALSO
74              
75             This class forms part of L<Paws>, documenting arguments for method DescribeMountTargets in L<Paws::EFS>
76              
77             =head1 BUGS and CONTRIBUTIONS
78              
79             The source code is located here: https://github.com/pplu/aws-sdk-perl
80              
81             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
82              
83             =cut
84