line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::EC2::CreateFlowLogsResult; |
3
|
1
|
|
|
1
|
|
370
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has ClientToken => (is => 'ro', isa => 'Str', request_name => 'clientToken', traits => ['NameInRequest',]); |
5
|
|
|
|
|
|
|
has FlowLogIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]', request_name => 'flowLogIdSet', traits => ['NameInRequest',]); |
6
|
|
|
|
|
|
|
has Unsuccessful => (is => 'ro', isa => 'ArrayRef[Paws::EC2::UnsuccessfulItem]', request_name => 'unsuccessful', traits => ['NameInRequest',]); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::EC2::CreateFlowLogsResult |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 ClientToken => Str |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Unique, case-sensitive identifier you provide to ensure the idempotency |
23
|
|
|
|
|
|
|
of the request. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 FlowLogIds => ArrayRef[Str|Undef] |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The IDs of the flow logs. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 Unsuccessful => ArrayRef[L<Paws::EC2::UnsuccessfulItem>] |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
Information about the flow logs that could not be created successfully. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 _request_id => Str |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=cut |
40
|
|
|
|
|
|
|
|