File Coverage

blib/lib/Paws/Greengrass/CreateGroupVersionResponse.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              
2             package Paws::Greengrass::CreateGroupVersionResponse;
3 1     1   643 use Moose;
  1         3  
  1         9  
4             has Arn => (is => 'ro', isa => 'Str');
5             has CreationTimestamp => (is => 'ro', isa => 'Str');
6             has Id => (is => 'ro', isa => 'Str');
7             has Version => (is => 'ro', isa => 'Str');
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::Greengrass::CreateGroupVersionResponse
17              
18             =head1 ATTRIBUTES
19              
20              
21             =head2 Arn => Str
22              
23             Arn of the version.
24              
25              
26             =head2 CreationTimestamp => Str
27              
28             Timestamp of when the version was created.
29              
30              
31             =head2 Id => Str
32              
33             Id of the resource container.
34              
35              
36             =head2 Version => Str
37              
38             Unique Id of a version.
39              
40              
41             =head2 _request_id => Str
42              
43              
44             =cut
45