File Coverage

blib/lib/Paws/RDS/PendingModifiedValues.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::PendingModifiedValues;
2 1     1   667 use Moose;
  1     1   5  
  1         10  
  1         661  
  1         4  
  1         8  
3             has AllocatedStorage => (is => 'ro', isa => 'Int');
4             has BackupRetentionPeriod => (is => 'ro', isa => 'Int');
5             has CACertificateIdentifier => (is => 'ro', isa => 'Str');
6             has DBInstanceClass => (is => 'ro', isa => 'Str');
7             has DBInstanceIdentifier => (is => 'ro', isa => 'Str');
8             has DBSubnetGroupName => (is => 'ro', isa => 'Str');
9             has EngineVersion => (is => 'ro', isa => 'Str');
10             has Iops => (is => 'ro', isa => 'Int');
11             has LicenseModel => (is => 'ro', isa => 'Str');
12             has MasterUserPassword => (is => 'ro', isa => 'Str');
13             has MultiAZ => (is => 'ro', isa => 'Bool');
14             has Port => (is => 'ro', isa => 'Int');
15             has StorageType => (is => 'ro', isa => 'Str');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::RDS::PendingModifiedValues
23              
24             =head1 USAGE
25              
26             This class represents one of two things:
27              
28             =head3 Arguments in a call to a service
29              
30             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
31             Each attribute should be used as a named argument in the calls that expect this type of object.
32              
33             As an example, if Att1 is expected to be a Paws::RDS::PendingModifiedValues object:
34              
35             $service_obj->Method(Att1 => { AllocatedStorage => $value, ..., StorageType => $value });
36              
37             =head3 Results returned from an API call
38              
39             Use accessors for each attribute. If Att1 is expected to be an Paws::RDS::PendingModifiedValues object:
40              
41             $result = $service_obj->Method(...);
42             $result->Att1->AllocatedStorage
43              
44             =head1 DESCRIPTION
45              
46             This data type is used as a response element in the ModifyDBInstance
47             action.
48              
49             =head1 ATTRIBUTES
50              
51              
52             =head2 AllocatedStorage => Int
53              
54             Contains the new C<AllocatedStorage> size for the DB instance that will
55             be applied or is in progress.
56              
57              
58             =head2 BackupRetentionPeriod => Int
59              
60             Specifies the pending number of days for which automated backups are
61             retained.
62              
63              
64             =head2 CACertificateIdentifier => Str
65              
66             Specifies the identifier of the CA certificate for the DB instance.
67              
68              
69             =head2 DBInstanceClass => Str
70              
71             Contains the new C<DBInstanceClass> for the DB instance that will be
72             applied or is in progress.
73              
74              
75             =head2 DBInstanceIdentifier => Str
76              
77             Contains the new C<DBInstanceIdentifier> for the DB instance that will
78             be applied or is in progress.
79              
80              
81             =head2 DBSubnetGroupName => Str
82              
83             The new DB subnet group for the DB instance.
84              
85              
86             =head2 EngineVersion => Str
87              
88             Indicates the database engine version.
89              
90              
91             =head2 Iops => Int
92              
93             Specifies the new Provisioned IOPS value for the DB instance that will
94             be applied or is being applied.
95              
96              
97             =head2 LicenseModel => Str
98              
99             The license model for the DB instance.
100              
101             Valid values: C<license-included> | C<bring-your-own-license> |
102             C<general-public-license>
103              
104              
105             =head2 MasterUserPassword => Str
106              
107             Contains the pending or in-progress change of the master credentials
108             for the DB instance.
109              
110              
111             =head2 MultiAZ => Bool
112              
113             Indicates that the Single-AZ DB instance is to change to a Multi-AZ
114             deployment.
115              
116              
117             =head2 Port => Int
118              
119             Specifies the pending port for the DB instance.
120              
121              
122             =head2 StorageType => Str
123              
124             Specifies the storage type to be associated with the DB instance.
125              
126              
127              
128             =head1 SEE ALSO
129              
130             This class forms part of L<Paws>, describing an object used in L<Paws::RDS>
131              
132             =head1 BUGS and CONTRIBUTIONS
133              
134             The source code is located here: https://github.com/pplu/aws-sdk-perl
135              
136             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
137              
138             =cut
139