line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudTrail::CreateTrailResponse; |
3
|
1
|
|
|
1
|
|
394
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has CloudWatchLogsLogGroupArn => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has CloudWatchLogsRoleArn => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has IncludeGlobalServiceEvents => (is => 'ro', isa => 'Bool'); |
7
|
|
|
|
|
|
|
has IsMultiRegionTrail => (is => 'ro', isa => 'Bool'); |
8
|
|
|
|
|
|
|
has KmsKeyId => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has LogFileValidationEnabled => (is => 'ro', isa => 'Bool'); |
10
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
has S3BucketName => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
has S3KeyPrefix => (is => 'ro', isa => 'Str'); |
13
|
|
|
|
|
|
|
has SnsTopicARN => (is => 'ro', isa => 'Str'); |
14
|
|
|
|
|
|
|
has SnsTopicName => (is => 'ro', isa => 'Str'); |
15
|
|
|
|
|
|
|
has TrailARN => (is => 'ro', isa => 'Str'); |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
### main pod documentation begin ### |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Paws::CloudTrail::CreateTrailResponse |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 CloudWatchLogsLogGroupArn => Str |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Specifies the Amazon Resource Name (ARN) of the log group to which |
31
|
|
|
|
|
|
|
CloudTrail logs will be delivered. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 CloudWatchLogsRoleArn => Str |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Specifies the role for the CloudWatch Logs endpoint to assume to write |
37
|
|
|
|
|
|
|
to a user's log group. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 IncludeGlobalServiceEvents => Bool |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Specifies whether the trail is publishing events from global services |
43
|
|
|
|
|
|
|
such as IAM to the log files. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 IsMultiRegionTrail => Bool |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Specifies whether the trail exists in one region or in all regions. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 KmsKeyId => Str |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
Specifies the KMS key ID that encrypts the logs delivered by |
54
|
|
|
|
|
|
|
CloudTrail. The value is a fully specified ARN to a KMS key in the |
55
|
|
|
|
|
|
|
format: |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
C<arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012> |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head2 LogFileValidationEnabled => Bool |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
Specifies whether log file integrity validation is enabled. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=head2 Name => Str |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
Specifies the name of the trail. |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=head2 S3BucketName => Str |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
Specifies the name of the Amazon S3 bucket designated for publishing |
73
|
|
|
|
|
|
|
log files. |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=head2 S3KeyPrefix => Str |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
Specifies the Amazon S3 key prefix that comes after the name of the |
79
|
|
|
|
|
|
|
bucket you have designated for log file delivery. For more information, |
80
|
|
|
|
|
|
|
see Finding Your CloudTrail Log Files. |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head2 SnsTopicARN => Str |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
Specifies the ARN of the Amazon SNS topic that CloudTrail uses to send |
86
|
|
|
|
|
|
|
notifications when log files are delivered. The format of a topic ARN |
87
|
|
|
|
|
|
|
is: |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
C<arn:aws:sns:us-east-1:123456789012:MyTopic> |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
=head2 SnsTopicName => Str |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
This field is deprecated. Use SnsTopicARN. |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=head2 TrailARN => Str |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
Specifies the ARN of the trail that was created. The format of a trail |
100
|
|
|
|
|
|
|
ARN is: |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
C<arn:aws:cloudtrail:us-east-1:123456789012:trail/MyTrail> |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
=head2 _request_id => Str |
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
=cut |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
1; |