File Coverage

blib/lib/Paws/RDS/DBEngineVersion.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             package Paws::RDS::DBEngineVersion;
2 1     1   308 use Moose;
  1     1   2  
  1         6  
  1         597  
  1         5  
  1         11  
3             has DBEngineDescription => (is => 'ro', isa => 'Str');
4             has DBEngineVersionDescription => (is => 'ro', isa => 'Str');
5             has DBParameterGroupFamily => (is => 'ro', isa => 'Str');
6             has DefaultCharacterSet => (is => 'ro', isa => 'Paws::RDS::CharacterSet');
7             has Engine => (is => 'ro', isa => 'Str');
8             has EngineVersion => (is => 'ro', isa => 'Str');
9             has SupportedCharacterSets => (is => 'ro', isa => 'ArrayRef[Paws::RDS::CharacterSet]', request_name => 'CharacterSet', traits => ['NameInRequest']);
10             has SupportedTimezones => (is => 'ro', isa => 'ArrayRef[Paws::RDS::Timezone]', request_name => 'Timezone', traits => ['NameInRequest']);
11             has ValidUpgradeTarget => (is => 'ro', isa => 'ArrayRef[Paws::RDS::UpgradeTarget]', request_name => 'UpgradeTarget', traits => ['NameInRequest']);
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::RDS::DBEngineVersion
19              
20             =head1 USAGE
21              
22             This class represents one of two things:
23              
24             =head3 Arguments in a call to a service
25              
26             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
27             Each attribute should be used as a named argument in the calls that expect this type of object.
28              
29             As an example, if Att1 is expected to be a Paws::RDS::DBEngineVersion object:
30              
31             $service_obj->Method(Att1 => { DBEngineDescription => $value, ..., ValidUpgradeTarget => $value });
32              
33             =head3 Results returned from an API call
34              
35             Use accessors for each attribute. If Att1 is expected to be an Paws::RDS::DBEngineVersion object:
36              
37             $result = $service_obj->Method(...);
38             $result->Att1->DBEngineDescription
39              
40             =head1 DESCRIPTION
41              
42             This data type is used as a response element in the action
43             DescribeDBEngineVersions.
44              
45             =head1 ATTRIBUTES
46              
47              
48             =head2 DBEngineDescription => Str
49              
50             The description of the database engine.
51              
52              
53             =head2 DBEngineVersionDescription => Str
54              
55             The description of the database engine version.
56              
57              
58             =head2 DBParameterGroupFamily => Str
59              
60             The name of the DB parameter group family for the database engine.
61              
62              
63             =head2 DefaultCharacterSet => L<Paws::RDS::CharacterSet>
64              
65             The default character set for new instances of this engine version, if
66             the C<CharacterSetName> parameter of the CreateDBInstance API is not
67             specified.
68              
69              
70             =head2 Engine => Str
71              
72             The name of the database engine.
73              
74              
75             =head2 EngineVersion => Str
76              
77             The version number of the database engine.
78              
79              
80             =head2 SupportedCharacterSets => ArrayRef[L<Paws::RDS::CharacterSet>]
81              
82             A list of the character sets supported by this engine for the
83             C<CharacterSetName> parameter of the C<CreateDBInstance> action.
84              
85              
86             =head2 SupportedTimezones => ArrayRef[L<Paws::RDS::Timezone>]
87              
88             A list of the time zones supported by this engine for the C<Timezone>
89             parameter of the C<CreateDBInstance> action.
90              
91              
92             =head2 ValidUpgradeTarget => ArrayRef[L<Paws::RDS::UpgradeTarget>]
93              
94             A list of engine versions that this database engine version can be
95             upgraded to.
96              
97              
98              
99             =head1 SEE ALSO
100              
101             This class forms part of L<Paws>, describing an object used in L<Paws::RDS>
102              
103             =head1 BUGS and CONTRIBUTIONS
104              
105             The source code is located here: https://github.com/pplu/aws-sdk-perl
106              
107             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
108              
109             =cut
110