File Coverage

blib/lib/Paws/DMS/DescribeOrderableReplicationInstances.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              
2             package Paws::DMS::DescribeOrderableReplicationInstances;
3 1     1   447 use Moose;
  1         3  
  1         7  
4             has Marker => (is => 'ro', isa => 'Str');
5             has MaxRecords => (is => 'ro', isa => 'Int');
6              
7 1     1   6016 use MooseX::ClassAttribute;
  1         4  
  1         8  
8              
9             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeOrderableReplicationInstances');
10             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::DMS::DescribeOrderableReplicationInstancesResponse');
11             class_has _result_key => (isa => 'Str', is => 'ro');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::DMS::DescribeOrderableReplicationInstances - Arguments for method DescribeOrderableReplicationInstances on Paws::DMS
19              
20             =head1 DESCRIPTION
21              
22             This class represents the parameters used for calling the method DescribeOrderableReplicationInstances on the
23             AWS Database Migration Service service. Use the attributes of this class
24             as arguments to method DescribeOrderableReplicationInstances.
25              
26             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeOrderableReplicationInstances.
27              
28             As an example:
29              
30             $service_obj->DescribeOrderableReplicationInstances(Att1 => $value1, Att2 => $value2, ...);
31              
32             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.
33              
34             =head1 ATTRIBUTES
35              
36              
37             =head2 Marker => Str
38              
39             An optional pagination token provided by a previous request. If this
40             parameter is specified, the response includes only records beyond the
41             marker, up to the value specified by C<MaxRecords>.
42              
43              
44              
45             =head2 MaxRecords => Int
46              
47             The maximum number of records to include in the response. If more
48             records exist than the specified C<MaxRecords> value, a pagination
49             token called a marker is included in the response so that the remaining
50             results can be retrieved.
51              
52             Default: 100
53              
54             Constraints: Minimum 20, maximum 100.
55              
56              
57              
58              
59             =head1 SEE ALSO
60              
61             This class forms part of L<Paws>, documenting arguments for method DescribeOrderableReplicationInstances in L<Paws::DMS>
62              
63             =head1 BUGS and CONTRIBUTIONS
64              
65             The source code is located here: https://github.com/pplu/aws-sdk-perl
66              
67             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
68              
69             =cut
70