1
2package Paws::EC2::DescribeTagsResult {
3  use Moose;
4  has NextToken => (is => 'ro', isa => 'Str', xmlname => 'nextToken', traits => ['Unwrapped',]);
5  has Tags => (is => 'ro', isa => 'ArrayRef[Paws::EC2::TagDescription]', xmlname => 'tagSet', traits => ['Unwrapped',]);
6
7}
81;
9
10### main pod documentation begin ###
11
12=head1 NAME
13
14Paws::EC2::DescribeTagsResult
15
16=head1 ATTRIBUTES
17
18=head2 NextToken => Str
19
20
21
22The token to use to retrieve the next page of results. This value is
23C<null> when there are no more results to return..
24
25
26
27
28
29
30
31
32
33=head2 Tags => ArrayRef[Paws::EC2::TagDescription]
34
35
36
37A list of tags.
38
39
40
41
42
43
44
45
46
47
48
49=cut
50
51