line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::RDS::DescribeDBEngineVersions; |
3
|
1
|
|
|
1
|
|
270
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
430
|
|
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has DBParameterGroupFamily => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has DefaultOnly => (is => 'ro', isa => 'Bool'); |
6
|
|
|
|
|
|
|
has Engine => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has EngineVersion => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has Filters => (is => 'ro', isa => 'ArrayRef[Paws::RDS::Filter]'); |
9
|
|
|
|
|
|
|
has ListSupportedCharacterSets => (is => 'ro', isa => 'Bool'); |
10
|
|
|
|
|
|
|
has ListSupportedTimezones => (is => 'ro', isa => 'Bool'); |
11
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
has MaxRecords => (is => 'ro', isa => 'Int'); |
13
|
|
|
|
|
|
|
|
14
|
1
|
|
|
1
|
|
5393
|
use MooseX::ClassAttribute; |
|
1
|
|
|
1
|
|
2
|
|
|
1
|
|
|
|
|
10
|
|
|
1
|
|
|
|
|
5689
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
10
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeDBEngineVersions'); |
17
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::RDS::DBEngineVersionMessage'); |
18
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro', default => 'DescribeDBEngineVersionsResult'); |
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
### main pod documentation begin ### |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 NAME |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
Paws::RDS::DescribeDBEngineVersions - Arguments for method DescribeDBEngineVersions on Paws::RDS |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 DESCRIPTION |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
This class represents the parameters used for calling the method DescribeDBEngineVersions on the |
30
|
|
|
|
|
|
|
Amazon Relational Database Service service. Use the attributes of this class |
31
|
|
|
|
|
|
|
as arguments to method DescribeDBEngineVersions. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeDBEngineVersions. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
As an example: |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
$service_obj->DescribeDBEngineVersions(Att1 => $value1, Att2 => $value2, ...); |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
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. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 DBParameterGroupFamily => Str |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
The name of a specific DB parameter group family to return details for. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Constraints: |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=over |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=item * |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Must be 1 to 255 alphanumeric characters |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=item * |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
First character must be a letter |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=item * |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
Cannot end with a hyphen or contain two consecutive hyphens |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=back |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head2 DefaultOnly => Bool |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
Indicates that only the default version of the specified engine or |
72
|
|
|
|
|
|
|
engine and major version combination is returned. |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=head2 Engine => Str |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
The database engine to return. |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=head2 EngineVersion => Str |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
The database engine version to return. |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
Example: C<5.1.49> |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=head2 Filters => ArrayRef[L<Paws::RDS::Filter>] |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
Not currently supported. |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
=head2 ListSupportedCharacterSets => Bool |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
If this parameter is specified and the requested engine supports the |
99
|
|
|
|
|
|
|
C<CharacterSetName> parameter for C<CreateDBInstance>, the response |
100
|
|
|
|
|
|
|
includes a list of supported character sets for each engine version. |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
=head2 ListSupportedTimezones => Bool |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
If this parameter is specified and the requested engine supports the |
107
|
|
|
|
|
|
|
C<TimeZone> parameter for C<CreateDBInstance>, the response includes a |
108
|
|
|
|
|
|
|
list of supported time zones for each engine version. |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
=head2 Marker => Str |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
An optional pagination token provided by a previous request. If this |
115
|
|
|
|
|
|
|
parameter is specified, the response includes only records beyond the |
116
|
|
|
|
|
|
|
marker, up to the value specified by C<MaxRecords>. |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
=head2 MaxRecords => Int |
121
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
The maximum number of records to include in the response. If more than |
123
|
|
|
|
|
|
|
the C<MaxRecords> value is available, a pagination token called a |
124
|
|
|
|
|
|
|
marker is included in the response so that the following results can be |
125
|
|
|
|
|
|
|
retrieved. |
126
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
Default: 100 |
128
|
|
|
|
|
|
|
|
129
|
|
|
|
|
|
|
Constraints: Minimum 20, maximum 100. |
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
=head1 SEE ALSO |
135
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method DescribeDBEngineVersions in L<Paws::RDS> |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
141
|
|
|
|
|
|
|
|
142
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
143
|
|
|
|
|
|
|
|
144
|
|
|
|
|
|
|
=cut |
145
|
|
|
|
|
|
|
|