1
2package Paws::EC2::CreateFlowLogsResult {
3  use Moose;
4  has ClientToken => (is => 'ro', isa => 'Str', xmlname => 'clientToken', traits => ['Unwrapped',]);
5  has FlowLogIds => (is => 'ro', isa => 'ArrayRef[Str]', xmlname => 'flowLogIdSet', traits => ['Unwrapped',]);
6  has Unsuccessful => (is => 'ro', isa => 'ArrayRef[Paws::EC2::UnsuccessfulItem]', xmlname => 'unsuccessful', traits => ['Unwrapped',]);
7
8}
91;
10
11### main pod documentation begin ###
12
13=head1 NAME
14
15Paws::EC2::CreateFlowLogsResult
16
17=head1 ATTRIBUTES
18
19=head2 ClientToken => Str
20
21
22
23Unique, case-sensitive identifier you provide to ensure the idempotency
24of the request.
25
26
27
28
29
30
31
32
33
34=head2 FlowLogIds => ArrayRef[Str]
35
36
37
38The IDs of the flow logs.
39
40
41
42
43
44
45
46
47
48=head2 Unsuccessful => ArrayRef[Paws::EC2::UnsuccessfulItem]
49
50
51
52Information about the flow logs that could not be created successfully.
53
54
55
56
57
58
59
60
61
62
63
64=cut
65
66