File Coverage

blib/lib/Paws/CloudHSMv2/Certificates.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::CloudHSMv2::Certificates;
2 1     1   275 use Moose;
  1         2  
  1         6  
3             has AwsHardwareCertificate => (is => 'ro', isa => 'Str');
4             has ClusterCertificate => (is => 'ro', isa => 'Str');
5             has ClusterCsr => (is => 'ro', isa => 'Str');
6             has HsmCertificate => (is => 'ro', isa => 'Str');
7             has ManufacturerHardwareCertificate => (is => 'ro', isa => 'Str');
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::CloudHSMv2::Certificates
15              
16             =head1 USAGE
17              
18             This class represents one of two things:
19              
20             =head3 Arguments in a call to a service
21              
22             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
23             Each attribute should be used as a named argument in the calls that expect this type of object.
24              
25             As an example, if Att1 is expected to be a Paws::CloudHSMv2::Certificates object:
26              
27             $service_obj->Method(Att1 => { AwsHardwareCertificate => $value, ..., ManufacturerHardwareCertificate => $value });
28              
29             =head3 Results returned from an API call
30              
31             Use accessors for each attribute. If Att1 is expected to be an Paws::CloudHSMv2::Certificates object:
32              
33             $result = $service_obj->Method(...);
34             $result->Att1->AwsHardwareCertificate
35              
36             =head1 DESCRIPTION
37              
38             Contains one or more certificates or a certificate signing request
39             (CSR).
40              
41             =head1 ATTRIBUTES
42              
43              
44             =head2 AwsHardwareCertificate => Str
45              
46             The HSM hardware certificate issued (signed) by AWS CloudHSM.
47              
48              
49             =head2 ClusterCertificate => Str
50              
51             The cluster certificate issued (signed) by the issuing certificate
52             authority (CA) of the cluster's owner.
53              
54              
55             =head2 ClusterCsr => Str
56              
57             The cluster's certificate signing request (CSR). The CSR exists only
58             when the cluster's state is C<UNINITIALIZED>.
59              
60              
61             =head2 HsmCertificate => Str
62              
63             The HSM certificate issued (signed) by the HSM hardware.
64              
65              
66             =head2 ManufacturerHardwareCertificate => Str
67              
68             The HSM hardware certificate issued (signed) by the hardware
69             manufacturer.
70              
71              
72              
73             =head1 SEE ALSO
74              
75             This class forms part of L<Paws>, describing an object used in L<Paws::CloudHSMv2>
76              
77             =head1 BUGS and CONTRIBUTIONS
78              
79             The source code is located here: https://github.com/pplu/aws-sdk-perl
80              
81             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
82              
83             =cut
84