File Coverage

blib/lib/Paws/StorageGateway/ListTagsForResourceOutput.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::ListTagsForResourceOutput;
3 1     1   612 use Moose;
  1         3  
  1         10  
4             has Marker => (is => 'ro', isa => 'Str');
5             has ResourceARN => (is => 'ro', isa => 'Str');
6             has Tags => (is => 'ro', isa => 'ArrayRef[Paws::StorageGateway::Tag]');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::StorageGateway::ListTagsForResourceOutput
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 Marker => Str
20              
21             An opaque string that indicates the position at which to stop returning
22             the list of tags.
23              
24              
25             =head2 ResourceARN => Str
26              
27             he Amazon Resource Name (ARN) of the resource for which you want to
28             list tags.
29              
30              
31             =head2 Tags => ArrayRef[L<Paws::StorageGateway::Tag>]
32              
33             An array that contains the tags for the specified resource.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40              
41             1;