line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Greengrass::GetGroupCertificateAuthorityResponse; |
3
|
1
|
|
|
1
|
|
529
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
11
|
|
4
|
|
|
|
|
|
|
has GroupCertificateAuthorityArn => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has GroupCertificateAuthorityId => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has PemEncodedCertificate => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::Greengrass::GetGroupCertificateAuthorityResponse |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 GroupCertificateAuthorityArn => Str |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Arn of the certificate authority for the group. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 GroupCertificateAuthorityId => Str |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Id of the certificate authority for the group. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 PemEncodedCertificate => Str |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
PEM encoded certificate for the group. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 _request_id => Str |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|