File Coverage

blib/lib/Paws/DMS/Connection.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::Connection;
2 1     1   579 use Moose;
  1         3  
  1         7  
3             has EndpointArn => (is => 'ro', isa => 'Str');
4             has EndpointIdentifier => (is => 'ro', isa => 'Str');
5             has LastFailureMessage => (is => 'ro', isa => 'Str');
6             has ReplicationInstanceArn => (is => 'ro', isa => 'Str');
7             has ReplicationInstanceIdentifier => (is => 'ro', isa => 'Str');
8             has Status => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::DMS::Connection
16              
17             =head1 USAGE
18              
19             This class represents one of two things:
20              
21             =head3 Arguments in a call to a service
22              
23             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
24             Each attribute should be used as a named argument in the calls that expect this type of object.
25              
26             As an example, if Att1 is expected to be a Paws::DMS::Connection object:
27              
28             $service_obj->Method(Att1 => { EndpointArn => $value, ..., Status => $value });
29              
30             =head3 Results returned from an API call
31              
32             Use accessors for each attribute. If Att1 is expected to be an Paws::DMS::Connection object:
33              
34             $result = $service_obj->Method(...);
35             $result->Att1->EndpointArn
36              
37             =head1 DESCRIPTION
38              
39             This class has no description
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 EndpointArn => Str
45              
46             The Amazon Resource Name (ARN) string that uniquely identifies the
47             endpoint.
48              
49              
50             =head2 EndpointIdentifier => Str
51              
52             The identifier of the endpoint. Identifiers must begin with a letter;
53             must contain only ASCII letters, digits, and hyphens; and must not end
54             with a hyphen or contain two consecutive hyphens.
55              
56              
57             =head2 LastFailureMessage => Str
58              
59             The error message when the connection last failed.
60              
61              
62             =head2 ReplicationInstanceArn => Str
63              
64             The Amazon Resource Name (ARN) of the replication instance.
65              
66              
67             =head2 ReplicationInstanceIdentifier => Str
68              
69             The replication instance identifier. This parameter is stored as a
70             lowercase string.
71              
72              
73             =head2 Status => Str
74              
75             The connection status.
76              
77              
78              
79             =head1 SEE ALSO
80              
81             This class forms part of L<Paws>, describing an object used in L<Paws::DMS>
82              
83             =head1 BUGS and CONTRIBUTIONS
84              
85             The source code is located here: https://github.com/pplu/aws-sdk-perl
86              
87             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
88              
89             =cut
90