File Coverage

blib/lib/Paws/SSM/GetDocumentResult.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::SSM::GetDocumentResult;
3 1     1   689 use Moose;
  1         6  
  1         14  
4             has Content => (is => 'ro', isa => 'Str');
5             has DocumentType => (is => 'ro', isa => 'Str');
6             has DocumentVersion => (is => 'ro', isa => 'Str');
7             has Name => (is => 'ro', isa => 'Str');
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::SSM::GetDocumentResult
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 Content => Str
21              
22             The contents of the Systems Manager document.
23              
24              
25             =head2 DocumentType => Str
26              
27             The document type.
28              
29             Valid values are: C<"Command">, C<"Policy">, C<"Automation">
30             =head2 DocumentVersion => Str
31              
32             The document version.
33              
34              
35             =head2 Name => Str
36              
37             The name of the Systems Manager document.
38              
39              
40             =head2 _request_id => Str
41              
42              
43             =cut
44              
45             1;