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   445 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 SupportsPerformanceInsights => (is => 'ro', isa => 'Bool');
15             has SupportsStorageEncryption => (is => 'ro', isa => 'Bool');
16             has Vpc => (is => 'ro', isa => 'Bool');
17             1;
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::RDS::OrderableDBInstanceOption
24              
25             =head1 USAGE
26              
27             This class represents one of two things:
28              
29             =head3 Arguments in a call to a service
30              
31             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
32             Each attribute should be used as a named argument in the calls that expect this type of object.
33              
34             As an example, if Att1 is expected to be a Paws::RDS::OrderableDBInstanceOption object:
35              
36             $service_obj->Method(Att1 => { AvailabilityZones => $value, ..., Vpc => $value });
37              
38             =head3 Results returned from an API call
39              
40             Use accessors for each attribute. If Att1 is expected to be an Paws::RDS::OrderableDBInstanceOption object:
41              
42             $result = $service_obj->Method(...);
43             $result->Att1->AvailabilityZones
44              
45             =head1 DESCRIPTION
46              
47             Contains a list of available options for a DB instance
48              
49             This data type is used as a response element in the
50             DescribeOrderableDBInstanceOptions action.
51              
52             =head1 ATTRIBUTES
53              
54              
55             =head2 AvailabilityZones => ArrayRef[L<Paws::RDS::AvailabilityZone>]
56              
57             A list of Availability Zones for the orderable DB instance.
58              
59              
60             =head2 DBInstanceClass => Str
61              
62             The DB instance class for the orderable DB instance.
63              
64              
65             =head2 Engine => Str
66              
67             The engine type of the orderable DB instance.
68              
69              
70             =head2 EngineVersion => Str
71              
72             The engine version of the orderable DB instance.
73              
74              
75             =head2 LicenseModel => Str
76              
77             The license model for the orderable DB instance.
78              
79              
80             =head2 MultiAZCapable => Bool
81              
82             Indicates whether this orderable DB instance is multi-AZ capable.
83              
84              
85             =head2 ReadReplicaCapable => Bool
86              
87             Indicates whether this orderable DB instance can have a Read Replica.
88              
89              
90             =head2 StorageType => Str
91              
92             Indicates the storage type for this orderable DB instance.
93              
94              
95             =head2 SupportsEnhancedMonitoring => Bool
96              
97             Indicates whether the DB instance supports enhanced monitoring at
98             intervals from 1 to 60 seconds.
99              
100              
101             =head2 SupportsIAMDatabaseAuthentication => Bool
102              
103             Indicates whether this orderable DB instance supports IAM database
104             authentication.
105              
106              
107             =head2 SupportsIops => Bool
108              
109             Indicates whether this orderable DB instance supports provisioned IOPS.
110              
111              
112             =head2 SupportsPerformanceInsights => Bool
113              
114            
115              
116              
117             =head2 SupportsStorageEncryption => Bool
118              
119             Indicates whether this orderable DB instance supports encrypted
120             storage.
121              
122              
123             =head2 Vpc => Bool
124              
125             Indicates whether this is a VPC orderable DB instance.
126              
127              
128              
129             =head1 SEE ALSO
130              
131             This class forms part of L<Paws>, describing an object used in L<Paws::RDS>
132              
133             =head1 BUGS and CONTRIBUTIONS
134              
135             The source code is located here: https://github.com/pplu/aws-sdk-perl
136              
137             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
138              
139             =cut
140