File Coverage

blib/lib/Paws/RedShift/LoggingStatus.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::RedShift::LoggingStatus;
3 1     1   460 use Moose;
  1         3  
  1         7  
4             has BucketName => (is => 'ro', isa => 'Str');
5             has LastFailureMessage => (is => 'ro', isa => 'Str');
6             has LastFailureTime => (is => 'ro', isa => 'Str');
7             has LastSuccessfulDeliveryTime => (is => 'ro', isa => 'Str');
8             has LoggingEnabled => (is => 'ro', isa => 'Bool');
9             has S3KeyPrefix => (is => 'ro', isa => 'Str');
10              
11             has _request_id => (is => 'ro', isa => 'Str');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::RedShift::LoggingStatus
19              
20             =head1 ATTRIBUTES
21              
22              
23             =head2 BucketName => Str
24              
25             The name of the S3 bucket where the log files are stored.
26              
27              
28             =head2 LastFailureMessage => Str
29              
30             The message indicating that logs failed to be delivered.
31              
32              
33             =head2 LastFailureTime => Str
34              
35             The last time when logs failed to be delivered.
36              
37              
38             =head2 LastSuccessfulDeliveryTime => Str
39              
40             The last time that logs were delivered.
41              
42              
43             =head2 LoggingEnabled => Bool
44              
45             C<true> if logging is on, C<false> if logging is off.
46              
47              
48             =head2 S3KeyPrefix => Str
49              
50             The prefix applied to the log file names.
51              
52              
53             =head2 _request_id => Str
54              
55              
56             =cut
57