line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Greengrass::GetLoggerDefinitionVersionResponse; |
3
|
1
|
|
|
1
|
|
611
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
4
|
|
|
|
|
|
|
has Arn => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has CreationTimestamp => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has Definition => (is => 'ro', isa => 'Paws::Greengrass::LoggerDefinitionVersion'); |
7
|
|
|
|
|
|
|
has Id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has Version => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::Greengrass::GetLoggerDefinitionVersionResponse |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 Arn => Str |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Arn of the logger definition version. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 CreationTimestamp => Str |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Timestamp of when the logger definition version was created. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 Definition => L<Paws::Greengrass::LoggerDefinitionVersion> |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Information on definition |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 Id => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Id of the logger definition the version belongs to. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 Version => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Version of the logger definition version. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head2 _request_id => Str |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=cut |
51
|
|
|
|
|
|
|
|