File Coverage

blib/lib/Paws/RDS/DescribeOrderableDBInstanceOptions.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::DescribeOrderableDBInstanceOptions;
3 1     1   637 use Moose;
  1         3  
  1         10  
4             has DBInstanceClass => (is => 'ro', isa => 'Str');
5             has Engine => (is => 'ro', isa => 'Str', required => 1);
6             has EngineVersion => (is => 'ro', isa => 'Str');
7             has Filters => (is => 'ro', isa => 'ArrayRef[Paws::RDS::Filter]');
8             has LicenseModel => (is => 'ro', isa => 'Str');
9             has Marker => (is => 'ro', isa => 'Str');
10             has MaxRecords => (is => 'ro', isa => 'Int');
11             has Vpc => (is => 'ro', isa => 'Bool');
12              
13 1     1   9379 use MooseX::ClassAttribute;
  1         6  
  1         16  
14              
15             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeOrderableDBInstanceOptions');
16             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::RDS::OrderableDBInstanceOptionsMessage');
17             class_has _result_key => (isa => 'Str', is => 'ro', default => 'DescribeOrderableDBInstanceOptionsResult');
18             1;
19              
20             ### main pod documentation begin ###
21              
22             =head1 NAME
23              
24             Paws::RDS::DescribeOrderableDBInstanceOptions - Arguments for method DescribeOrderableDBInstanceOptions on Paws::RDS
25              
26             =head1 DESCRIPTION
27              
28             This class represents the parameters used for calling the method DescribeOrderableDBInstanceOptions on the
29             Amazon Relational Database Service service. Use the attributes of this class
30             as arguments to method DescribeOrderableDBInstanceOptions.
31              
32             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeOrderableDBInstanceOptions.
33              
34             As an example:
35              
36             $service_obj->DescribeOrderableDBInstanceOptions(Att1 => $value1, Att2 => $value2, ...);
37              
38             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.
39              
40             =head1 ATTRIBUTES
41              
42              
43             =head2 DBInstanceClass => Str
44              
45             The DB instance class filter value. Specify this parameter to show only
46             the available offerings matching the specified DB instance class.
47              
48              
49              
50             =head2 B<REQUIRED> Engine => Str
51              
52             The name of the engine to retrieve DB instance options for.
53              
54              
55              
56             =head2 EngineVersion => Str
57              
58             The engine version filter value. Specify this parameter to show only
59             the available offerings matching the specified engine version.
60              
61              
62              
63             =head2 Filters => ArrayRef[L<Paws::RDS::Filter>]
64              
65             This parameter is not currently supported.
66              
67              
68              
69             =head2 LicenseModel => Str
70              
71             The license model filter value. Specify this parameter to show only the
72             available offerings matching the specified license model.
73              
74              
75              
76             =head2 Marker => Str
77              
78             An optional pagination token provided by a previous
79             DescribeOrderableDBInstanceOptions request. If this parameter is
80             specified, the response includes only records beyond the marker, up to
81             the value specified by C<MaxRecords> .
82              
83              
84              
85             =head2 MaxRecords => Int
86              
87             The maximum number of records to include in the response. If more
88             records exist than the specified C<MaxRecords> value, a pagination
89             token called a marker is included in the response so that the remaining
90             results can be retrieved.
91              
92             Default: 100
93              
94             Constraints: Minimum 20, maximum 100.
95              
96              
97              
98             =head2 Vpc => Bool
99              
100             The VPC filter value. Specify this parameter to show only the available
101             VPC or non-VPC offerings.
102              
103              
104              
105              
106             =head1 SEE ALSO
107              
108             This class forms part of L<Paws>, documenting arguments for method DescribeOrderableDBInstanceOptions in L<Paws::RDS>
109              
110             =head1 BUGS and CONTRIBUTIONS
111              
112             The source code is located here: https://github.com/pplu/aws-sdk-perl
113              
114             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
115              
116             =cut
117