line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::IoT::CreateCertificateFromCsrResponse; |
3
|
1
|
|
|
1
|
|
405
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has CertificateArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'certificateArn'); |
5
|
|
|
|
|
|
|
has CertificateId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'certificateId'); |
6
|
|
|
|
|
|
|
has CertificatePem => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'certificatePem'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::IoT::CreateCertificateFromCsrResponse |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 CertificateArn => Str |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) of the certificate. You can use the ARN |
23
|
|
|
|
|
|
|
as a principal for policy operations. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 CertificateId => Str |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The ID of the certificate. Certificate management operations only take |
29
|
|
|
|
|
|
|
a certificateId. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 CertificatePem => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The certificate data, in PEM format. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 _request_id => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|