File Coverage

blib/lib/Paws/RDS/OrderableDBInstanceOption.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::RDS::OrderableDBInstanceOption;
2 1     1   581 use Moose;
  1         3  
  1         9  
3             has AvailabilityZones => (is => 'ro', isa => 'ArrayRef[Paws::RDS::AvailabilityZone]', request_name => 'AvailabilityZone', traits => ['NameInRequest']);
4             has DBInstanceClass => (is => 'ro', isa => 'Str');
5             has Engine => (is => 'ro', isa => 'Str');
6             has EngineVersion => (is => 'ro', isa => 'Str');
7             has LicenseModel => (is => 'ro', isa => 'Str');
8             has MultiAZCapable => (is => 'ro', isa => 'Bool');
9             has ReadReplicaCapable => (is => 'ro', isa => 'Bool');
10             has StorageType => (is => 'ro', isa => 'Str');
11             has SupportsEnhancedMonitoring => (is => 'ro', isa => 'Bool');
12             has SupportsIAMDatabaseAuthentication => (is => 'ro', isa => 'Bool');
13             has SupportsIops => (is => 'ro', isa => 'Bool');
14             has SupportsStorageEncryption => (is => 'ro', isa => 'Bool');
15             has Vpc => (is => 'ro', isa => 'Bool');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::RDS::OrderableDBInstanceOption
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::OrderableDBInstanceOption object:
34              
35             $service_obj->Method(Att1 => { AvailabilityZones => $value, ..., Vpc => $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::OrderableDBInstanceOption object:
40              
41             $result = $service_obj->Method(...);
42             $result->Att1->AvailabilityZones
43              
44             =head1 DESCRIPTION
45              
46             Contains a list of available options for a DB instance
47              
48             This data type is used as a response element in the
49             DescribeOrderableDBInstanceOptions action.
50              
51             =head1 ATTRIBUTES
52              
53              
54             =head2 AvailabilityZones => ArrayRef[L<Paws::RDS::AvailabilityZone>]
55              
56             A list of Availability Zones for the orderable DB instance.
57              
58              
59             =head2 DBInstanceClass => Str
60              
61             The DB instance class for the orderable DB instance.
62              
63              
64             =head2 Engine => Str
65              
66             The engine type of the orderable DB instance.
67              
68              
69             =head2 EngineVersion => Str
70              
71             The engine version of the orderable DB instance.
72              
73              
74             =head2 LicenseModel => Str
75              
76             The license model for the orderable DB instance.
77              
78              
79             =head2 MultiAZCapable => Bool
80              
81             Indicates whether this orderable DB instance is multi-AZ capable.
82              
83              
84             =head2 ReadReplicaCapable => Bool
85              
86             Indicates whether this orderable DB instance can have a Read Replica.
87              
88              
89             =head2 StorageType => Str
90              
91             Indicates the storage type for this orderable DB instance.
92              
93              
94             =head2 SupportsEnhancedMonitoring => Bool
95              
96             Indicates whether the DB instance supports enhanced monitoring at
97             intervals from 1 to 60 seconds.
98              
99              
100             =head2 SupportsIAMDatabaseAuthentication => Bool
101              
102             Indicates whether this orderable DB instance supports IAM database
103             authentication.
104              
105              
106             =head2 SupportsIops => Bool
107              
108             Indicates whether this orderable DB instance supports provisioned IOPS.
109              
110              
111             =head2 SupportsStorageEncryption => Bool
112              
113             Indicates whether this orderable DB instance supports encrypted
114             storage.
115              
116              
117             =head2 Vpc => Bool
118              
119             Indicates whether this is a VPC orderable DB instance.
120              
121              
122              
123             =head1 SEE ALSO
124              
125             This class forms part of L<Paws>, describing an object used in L<Paws::RDS>
126              
127             =head1 BUGS and CONTRIBUTIONS
128              
129             The source code is located here: https://github.com/pplu/aws-sdk-perl
130              
131             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
132              
133             =cut
134