1
2package Paws::RDS::DownloadDBLogFilePortionDetails {
3  use Moose;
4  has AdditionalDataPending => (is => 'ro', isa => 'Bool');
5  has LogFileData => (is => 'ro', isa => 'Str');
6  has Marker => (is => 'ro', isa => 'Str');
7
8}
91;
10
11### main pod documentation begin ###
12
13=head1 NAME
14
15Paws::RDS::DownloadDBLogFilePortionDetails
16
17=head1 ATTRIBUTES
18
19=head2 AdditionalDataPending => Bool
20
21
22
23Boolean value that if true, indicates there is more data to be
24downloaded.
25
26
27
28
29
30
31
32
33
34=head2 LogFileData => Str
35
36
37
38Entries from the specified log file.
39
40
41
42
43
44
45
46
47
48=head2 Marker => Str
49
50
51
52A pagination token that can be used in a subsequent
53DownloadDBLogFilePortion request.
54
55
56
57
58
59
60
61
62
63
64
65=cut
66
67