line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::IoT::CreateKeysAndCertificateResponse; |
3
|
1
|
|
|
1
|
|
373
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
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
|
|
|
|
|
|
|
has KeyPair => (is => 'ro', isa => 'Paws::IoT::KeyPair', traits => ['NameInRequest'], request_name => 'keyPair'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::IoT::CreateKeysAndCertificateResponse |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 CertificateArn => Str |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
The ARN of the certificate. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 CertificateId => Str |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The ID of the certificate. AWS IoT issues a default subject name for |
29
|
|
|
|
|
|
|
the certificate (for example, AWS IoT Certificate). |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 CertificatePem => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The certificate data, in PEM format. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 KeyPair => L<Paws::IoT::KeyPair> |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The generated key pair. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 _request_id => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=cut |
46
|
|
|
|
|
|
|
|