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