File Coverage

blib/lib/Paws/CloudTrail/GetTrailStatusResponse.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::CloudTrail::GetTrailStatusResponse;
3 1     1   545 use Moose;
  1     1   2  
  1         7  
  1         487  
  1         3  
  1         8  
4             has IsLogging => (is => 'ro', isa => 'Bool');
5             has LatestCloudWatchLogsDeliveryError => (is => 'ro', isa => 'Str');
6             has LatestCloudWatchLogsDeliveryTime => (is => 'ro', isa => 'Str');
7             has LatestDeliveryAttemptSucceeded => (is => 'ro', isa => 'Str');
8             has LatestDeliveryAttemptTime => (is => 'ro', isa => 'Str');
9             has LatestDeliveryError => (is => 'ro', isa => 'Str');
10             has LatestDeliveryTime => (is => 'ro', isa => 'Str');
11             has LatestDigestDeliveryError => (is => 'ro', isa => 'Str');
12             has LatestDigestDeliveryTime => (is => 'ro', isa => 'Str');
13             has LatestNotificationAttemptSucceeded => (is => 'ro', isa => 'Str');
14             has LatestNotificationAttemptTime => (is => 'ro', isa => 'Str');
15             has LatestNotificationError => (is => 'ro', isa => 'Str');
16             has LatestNotificationTime => (is => 'ro', isa => 'Str');
17             has StartLoggingTime => (is => 'ro', isa => 'Str');
18             has StopLoggingTime => (is => 'ro', isa => 'Str');
19             has TimeLoggingStarted => (is => 'ro', isa => 'Str');
20             has TimeLoggingStopped => (is => 'ro', isa => 'Str');
21              
22             has _request_id => (is => 'ro', isa => 'Str');
23              
24             ### main pod documentation begin ###
25              
26             =head1 NAME
27              
28             Paws::CloudTrail::GetTrailStatusResponse
29              
30             =head1 ATTRIBUTES
31              
32              
33             =head2 IsLogging => Bool
34              
35             Whether the CloudTrail is currently logging AWS API calls.
36              
37              
38             =head2 LatestCloudWatchLogsDeliveryError => Str
39              
40             Displays any CloudWatch Logs error that CloudTrail encountered when
41             attempting to deliver logs to CloudWatch Logs.
42              
43              
44             =head2 LatestCloudWatchLogsDeliveryTime => Str
45              
46             Displays the most recent date and time when CloudTrail delivered logs
47             to CloudWatch Logs.
48              
49              
50             =head2 LatestDeliveryAttemptSucceeded => Str
51              
52             This field is deprecated.
53              
54              
55             =head2 LatestDeliveryAttemptTime => Str
56              
57             This field is deprecated.
58              
59              
60             =head2 LatestDeliveryError => Str
61              
62             Displays any Amazon S3 error that CloudTrail encountered when
63             attempting to deliver log files to the designated bucket. For more
64             information see the topic Error Responses in the Amazon S3 API
65             Reference.
66              
67             This error occurs only when there is a problem with the destination S3
68             bucket and will not occur for timeouts. To resolve the issue, create a
69             new bucket and call C<UpdateTrail> to specify the new bucket, or fix
70             the existing objects so that CloudTrail can again write to the bucket.
71              
72              
73             =head2 LatestDeliveryTime => Str
74              
75             Specifies the date and time that CloudTrail last delivered log files to
76             an account's Amazon S3 bucket.
77              
78              
79             =head2 LatestDigestDeliveryError => Str
80              
81             Displays any Amazon S3 error that CloudTrail encountered when
82             attempting to deliver a digest file to the designated bucket. For more
83             information see the topic Error Responses in the Amazon S3 API
84             Reference.
85              
86             This error occurs only when there is a problem with the destination S3
87             bucket and will not occur for timeouts. To resolve the issue, create a
88             new bucket and call C<UpdateTrail> to specify the new bucket, or fix
89             the existing objects so that CloudTrail can again write to the bucket.
90              
91              
92             =head2 LatestDigestDeliveryTime => Str
93              
94             Specifies the date and time that CloudTrail last delivered a digest
95             file to an account's Amazon S3 bucket.
96              
97              
98             =head2 LatestNotificationAttemptSucceeded => Str
99              
100             This field is deprecated.
101              
102              
103             =head2 LatestNotificationAttemptTime => Str
104              
105             This field is deprecated.
106              
107              
108             =head2 LatestNotificationError => Str
109              
110             Displays any Amazon SNS error that CloudTrail encountered when
111             attempting to send a notification. For more information about Amazon
112             SNS errors, see the Amazon SNS Developer Guide.
113              
114              
115             =head2 LatestNotificationTime => Str
116              
117             Specifies the date and time of the most recent Amazon SNS notification
118             that CloudTrail has written a new log file to an account's Amazon S3
119             bucket.
120              
121              
122             =head2 StartLoggingTime => Str
123              
124             Specifies the most recent date and time when CloudTrail started
125             recording API calls for an AWS account.
126              
127              
128             =head2 StopLoggingTime => Str
129              
130             Specifies the most recent date and time when CloudTrail stopped
131             recording API calls for an AWS account.
132              
133              
134             =head2 TimeLoggingStarted => Str
135              
136             This field is deprecated.
137              
138              
139             =head2 TimeLoggingStopped => Str
140              
141             This field is deprecated.
142              
143              
144             =head2 _request_id => Str
145              
146              
147             =cut
148              
149             1;