File Coverage

blib/lib/Paws/IoT/GetPolicyResponse.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::IoT::GetPolicyResponse;
3 1     1   465 use Moose;
  1         3  
  1         10  
4             has DefaultVersionId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'defaultVersionId');
5             has PolicyArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'policyArn');
6             has PolicyDocument => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'policyDocument');
7             has PolicyName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'policyName');
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::GetPolicyResponse
17              
18             =head1 ATTRIBUTES
19              
20              
21             =head2 DefaultVersionId => Str
22              
23             The default policy version ID.
24              
25              
26             =head2 PolicyArn => Str
27              
28             The policy ARN.
29              
30              
31             =head2 PolicyDocument => Str
32              
33             The JSON document that describes the policy.
34              
35              
36             =head2 PolicyName => Str
37              
38             The policy name.
39              
40              
41             =head2 _request_id => Str
42              
43              
44             =cut
45