File Coverage

blib/lib/Paws/RDS/DescribeReservedDBInstances.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::RDS::DescribeReservedDBInstances;
3 1     1   634 use Moose;
  1     1   5  
  1         8  
  1         766  
  1         2  
  1         11  
4             has DBInstanceClass => (is => 'ro', isa => 'Str');
5             has Duration => (is => 'ro', isa => 'Str');
6             has Filters => (is => 'ro', isa => 'ArrayRef[Paws::RDS::Filter]');
7             has Marker => (is => 'ro', isa => 'Str');
8             has MaxRecords => (is => 'ro', isa => 'Int');
9             has MultiAZ => (is => 'ro', isa => 'Bool');
10             has OfferingType => (is => 'ro', isa => 'Str');
11             has ProductDescription => (is => 'ro', isa => 'Str');
12             has ReservedDBInstanceId => (is => 'ro', isa => 'Str');
13             has ReservedDBInstancesOfferingId => (is => 'ro', isa => 'Str');
14              
15 1     1   9973 use MooseX::ClassAttribute;
  1     1   5  
  1         10  
  1         7311  
  1         3  
  1         10  
16              
17             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeReservedDBInstances');
18             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::RDS::ReservedDBInstanceMessage');
19             class_has _result_key => (isa => 'Str', is => 'ro', default => 'DescribeReservedDBInstancesResult');
20             1;
21              
22             ### main pod documentation begin ###
23              
24             =head1 NAME
25              
26             Paws::RDS::DescribeReservedDBInstances - Arguments for method DescribeReservedDBInstances on Paws::RDS
27              
28             =head1 DESCRIPTION
29              
30             This class represents the parameters used for calling the method DescribeReservedDBInstances on the
31             Amazon Relational Database Service service. Use the attributes of this class
32             as arguments to method DescribeReservedDBInstances.
33              
34             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeReservedDBInstances.
35              
36             As an example:
37              
38             $service_obj->DescribeReservedDBInstances(Att1 => $value1, Att2 => $value2, ...);
39              
40             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.
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 DBInstanceClass => Str
46              
47             The DB instance class filter value. Specify this parameter to show only
48             those reservations matching the specified DB instances class.
49              
50              
51              
52             =head2 Duration => Str
53              
54             The duration filter value, specified in years or seconds. Specify this
55             parameter to show only reservations for this duration.
56              
57             Valid Values: C<1 | 3 | 31536000 | 94608000>
58              
59              
60              
61             =head2 Filters => ArrayRef[L<Paws::RDS::Filter>]
62              
63             This parameter is not currently supported.
64              
65              
66              
67             =head2 Marker => Str
68              
69             An optional pagination token provided by a previous request. If this
70             parameter is specified, the response includes only records beyond the
71             marker, up to the value specified by C<MaxRecords>.
72              
73              
74              
75             =head2 MaxRecords => Int
76              
77             The maximum number of records to include in the response. If more than
78             the C<MaxRecords> value is available, a pagination token called a
79             marker is included in the response so that the following results can be
80             retrieved.
81              
82             Default: 100
83              
84             Constraints: Minimum 20, maximum 100.
85              
86              
87              
88             =head2 MultiAZ => Bool
89              
90             The Multi-AZ filter value. Specify this parameter to show only those
91             reservations matching the specified Multi-AZ parameter.
92              
93              
94              
95             =head2 OfferingType => Str
96              
97             The offering type filter value. Specify this parameter to show only the
98             available offerings matching the specified offering type.
99              
100             Valid Values: C<"Partial Upfront" | "All Upfront" | "No Upfront">
101              
102              
103              
104             =head2 ProductDescription => Str
105              
106             The product description filter value. Specify this parameter to show
107             only those reservations matching the specified product description.
108              
109              
110              
111             =head2 ReservedDBInstanceId => Str
112              
113             The reserved DB instance identifier filter value. Specify this
114             parameter to show only the reservation that matches the specified
115             reservation ID.
116              
117              
118              
119             =head2 ReservedDBInstancesOfferingId => Str
120              
121             The offering identifier filter value. Specify this parameter to show
122             only purchased reservations matching the specified offering identifier.
123              
124              
125              
126              
127             =head1 SEE ALSO
128              
129             This class forms part of L<Paws>, documenting arguments for method DescribeReservedDBInstances in L<Paws::RDS>
130              
131             =head1 BUGS and CONTRIBUTIONS
132              
133             The source code is located here: https://github.com/pplu/aws-sdk-perl
134              
135             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
136              
137             =cut
138