1
2package Paws::EC2::DescribeSnapshotsResult {
3  use Moose;
4  has NextToken => (is => 'ro', isa => 'Str', xmlname => 'nextToken', traits => ['Unwrapped',]);
5  has Snapshots => (is => 'ro', isa => 'ArrayRef[Paws::EC2::Snapshot]', xmlname => 'snapshotSet', traits => ['Unwrapped',]);
6
7}
81;
9
10### main pod documentation begin ###
11
12=head1 NAME
13
14Paws::EC2::DescribeSnapshotsResult
15
16=head1 ATTRIBUTES
17
18=head2 NextToken => Str
19
20
21
22The C<NextToken> value to include in a future C<DescribeSnapshots>
23request. When the results of a C<DescribeSnapshots> request exceed
24C<MaxResults>, this value can be used to retrieve the next page of
25results. This value is C<null> when there are no more results to
26return.
27
28
29
30
31
32
33
34
35
36=head2 Snapshots => ArrayRef[Paws::EC2::Snapshot]
37
38
39
40Information about the snapshots.
41
42
43
44
45
46
47
48
49
50
51
52=cut
53
54