File Coverage

blib/lib/Paws/RDS/DescribeDBLogFiles.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::RDS::DescribeDBLogFiles;
3 1     1   533 use Moose;
  1         3  
  1         9  
4             has DBInstanceIdentifier => (is => 'ro', isa => 'Str', required => 1);
5             has FileLastWritten => (is => 'ro', isa => 'Int');
6             has FilenameContains => (is => 'ro', isa => 'Str');
7             has FileSize => (is => 'ro', isa => 'Int');
8             has Filters => (is => 'ro', isa => 'ArrayRef[Paws::RDS::Filter]');
9             has Marker => (is => 'ro', isa => 'Str');
10             has MaxRecords => (is => 'ro', isa => 'Int');
11              
12 1     1   7997 use MooseX::ClassAttribute;
  1         4  
  1         40  
13              
14             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeDBLogFiles');
15             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::RDS::DescribeDBLogFilesResponse');
16             class_has _result_key => (isa => 'Str', is => 'ro', default => 'DescribeDBLogFilesResult');
17             1;
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::RDS::DescribeDBLogFiles - Arguments for method DescribeDBLogFiles on Paws::RDS
24              
25             =head1 DESCRIPTION
26              
27             This class represents the parameters used for calling the method DescribeDBLogFiles on the
28             Amazon Relational Database Service service. Use the attributes of this class
29             as arguments to method DescribeDBLogFiles.
30              
31             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeDBLogFiles.
32              
33             As an example:
34              
35             $service_obj->DescribeDBLogFiles(Att1 => $value1, Att2 => $value2, ...);
36              
37             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
38              
39             =head1 ATTRIBUTES
40              
41              
42             =head2 B<REQUIRED> DBInstanceIdentifier => Str
43              
44             The customer-assigned name of the DB instance that contains the log
45             files you want to list.
46              
47             Constraints:
48              
49             =over
50              
51             =item *
52              
53             Must contain from 1 to 63 alphanumeric characters or hyphens
54              
55             =item *
56              
57             First character must be a letter
58              
59             =item *
60              
61             Cannot end with a hyphen or contain two consecutive hyphens
62              
63             =back
64              
65              
66              
67              
68             =head2 FileLastWritten => Int
69              
70             Filters the available log files for files written since the specified
71             date, in POSIX timestamp format with milliseconds.
72              
73              
74              
75             =head2 FilenameContains => Str
76              
77             Filters the available log files for log file names that contain the
78             specified string.
79              
80              
81              
82             =head2 FileSize => Int
83              
84             Filters the available log files for files larger than the specified
85             size.
86              
87              
88              
89             =head2 Filters => ArrayRef[L<Paws::RDS::Filter>]
90              
91             This parameter is not currently supported.
92              
93              
94              
95             =head2 Marker => Str
96              
97             The pagination token provided in the previous request. If this
98             parameter is specified the response includes only records beyond the
99             marker, up to MaxRecords.
100              
101              
102              
103             =head2 MaxRecords => Int
104              
105             The maximum number of records to include in the response. If more
106             records exist than the specified MaxRecords value, a pagination token
107             called a marker is included in the response so that the remaining
108             results can be retrieved.
109              
110              
111              
112              
113             =head1 SEE ALSO
114              
115             This class forms part of L<Paws>, documenting arguments for method DescribeDBLogFiles in L<Paws::RDS>
116              
117             =head1 BUGS and CONTRIBUTIONS
118              
119             The source code is located here: https://github.com/pplu/aws-sdk-perl
120              
121             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
122              
123             =cut
124