File Coverage

blib/lib/Paws/DMS/OrderableReplicationInstance.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::DMS::OrderableReplicationInstance;
2 1     1   411 use Moose;
  1         4  
  1         8  
3             has DefaultAllocatedStorage => (is => 'ro', isa => 'Int');
4             has EngineVersion => (is => 'ro', isa => 'Str');
5             has IncludedAllocatedStorage => (is => 'ro', isa => 'Int');
6             has MaxAllocatedStorage => (is => 'ro', isa => 'Int');
7             has MinAllocatedStorage => (is => 'ro', isa => 'Int');
8             has ReplicationInstanceClass => (is => 'ro', isa => 'Str');
9             has StorageType => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::DMS::OrderableReplicationInstance
17              
18             =head1 USAGE
19              
20             This class represents one of two things:
21              
22             =head3 Arguments in a call to a service
23              
24             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
25             Each attribute should be used as a named argument in the calls that expect this type of object.
26              
27             As an example, if Att1 is expected to be a Paws::DMS::OrderableReplicationInstance object:
28              
29             $service_obj->Method(Att1 => { DefaultAllocatedStorage => $value, ..., StorageType => $value });
30              
31             =head3 Results returned from an API call
32              
33             Use accessors for each attribute. If Att1 is expected to be an Paws::DMS::OrderableReplicationInstance object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->DefaultAllocatedStorage
37              
38             =head1 DESCRIPTION
39              
40             This class has no description
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 DefaultAllocatedStorage => Int
46              
47             The default amount of storage (in gigabytes) that is allocated for the
48             replication instance.
49              
50              
51             =head2 EngineVersion => Str
52              
53             The version of the replication engine.
54              
55              
56             =head2 IncludedAllocatedStorage => Int
57              
58             The amount of storage (in gigabytes) that is allocated for the
59             replication instance.
60              
61              
62             =head2 MaxAllocatedStorage => Int
63              
64             The minimum amount of storage (in gigabytes) that can be allocated for
65             the replication instance.
66              
67              
68             =head2 MinAllocatedStorage => Int
69              
70             The minimum amount of storage (in gigabytes) that can be allocated for
71             the replication instance.
72              
73              
74             =head2 ReplicationInstanceClass => Str
75              
76             The compute and memory capacity of the replication instance.
77              
78             Valid Values: C<dms.t2.micro | dms.t2.small | dms.t2.medium |
79             dms.t2.large | dms.c4.large | dms.c4.xlarge | dms.c4.2xlarge |
80             dms.c4.4xlarge>
81              
82              
83             =head2 StorageType => Str
84              
85             The type of storage used by the replication instance.
86              
87              
88              
89             =head1 SEE ALSO
90              
91             This class forms part of L<Paws>, describing an object used in L<Paws::DMS>
92              
93             =head1 BUGS and CONTRIBUTIONS
94              
95             The source code is located here: https://github.com/pplu/aws-sdk-perl
96              
97             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
98              
99             =cut
100