File Coverage

blib/lib/Paws/DMS/Certificate.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::Certificate;
2 1     1   543 use Moose;
  1         2  
  1         7  
3             has CertificateArn => (is => 'ro', isa => 'Str');
4             has CertificateCreationDate => (is => 'ro', isa => 'Str');
5             has CertificateIdentifier => (is => 'ro', isa => 'Str');
6             has CertificateOwner => (is => 'ro', isa => 'Str');
7             has CertificatePem => (is => 'ro', isa => 'Str');
8             has CertificateWallet => (is => 'ro', isa => 'Str');
9             has KeyLength => (is => 'ro', isa => 'Int');
10             has SigningAlgorithm => (is => 'ro', isa => 'Str');
11             has ValidFromDate => (is => 'ro', isa => 'Str');
12             has ValidToDate => (is => 'ro', isa => 'Str');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::DMS::Certificate
20              
21             =head1 USAGE
22              
23             This class represents one of two things:
24              
25             =head3 Arguments in a call to a service
26              
27             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
28             Each attribute should be used as a named argument in the calls that expect this type of object.
29              
30             As an example, if Att1 is expected to be a Paws::DMS::Certificate object:
31              
32             $service_obj->Method(Att1 => { CertificateArn => $value, ..., ValidToDate => $value });
33              
34             =head3 Results returned from an API call
35              
36             Use accessors for each attribute. If Att1 is expected to be an Paws::DMS::Certificate object:
37              
38             $result = $service_obj->Method(...);
39             $result->Att1->CertificateArn
40              
41             =head1 DESCRIPTION
42              
43             The SSL certificate that can be used to encrypt connections between the
44             endpoints and the replication instance.
45              
46             =head1 ATTRIBUTES
47              
48              
49             =head2 CertificateArn => Str
50              
51             The Amazon Resource Name (ARN) for the certificate.
52              
53              
54             =head2 CertificateCreationDate => Str
55              
56             The date that the certificate was created.
57              
58              
59             =head2 CertificateIdentifier => Str
60              
61             The customer-assigned name of the certificate. Valid characters are A-z
62             and 0-9.
63              
64              
65             =head2 CertificateOwner => Str
66              
67             The owner of the certificate.
68              
69              
70             =head2 CertificatePem => Str
71              
72             The contents of the .pem X.509 certificate file for the certificate.
73              
74              
75             =head2 CertificateWallet => Str
76              
77             The location of the imported Oracle Wallet certificate for use with
78             SSL.
79              
80              
81             =head2 KeyLength => Int
82              
83             The key length of the cryptographic algorithm being used.
84              
85              
86             =head2 SigningAlgorithm => Str
87              
88             The signing algorithm for the certificate.
89              
90              
91             =head2 ValidFromDate => Str
92              
93             The beginning date that the certificate is valid.
94              
95              
96             =head2 ValidToDate => Str
97              
98             The final date that the certificate is valid.
99              
100              
101              
102             =head1 SEE ALSO
103              
104             This class forms part of L<Paws>, describing an object used in L<Paws::DMS>
105              
106             =head1 BUGS and CONTRIBUTIONS
107              
108             The source code is located here: https://github.com/pplu/aws-sdk-perl
109              
110             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
111              
112             =cut
113