File Coverage

blib/lib/Paws/IoT/GetPolicyVersionResponse.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::GetPolicyVersionResponse;
3 1     1   629 use Moose;
  1         3  
  1         12  
4             has IsDefaultVersion => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'isDefaultVersion');
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             has PolicyVersionId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'policyVersionId');
9              
10             has _request_id => (is => 'ro', isa => 'Str');
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::IoT::GetPolicyVersionResponse
18              
19             =head1 ATTRIBUTES
20              
21              
22             =head2 IsDefaultVersion => Bool
23              
24             Specifies whether the policy version is the default.
25              
26              
27             =head2 PolicyArn => Str
28              
29             The policy ARN.
30              
31              
32             =head2 PolicyDocument => Str
33              
34             The JSON document that describes the policy.
35              
36              
37             =head2 PolicyName => Str
38              
39             The policy name.
40              
41              
42             =head2 PolicyVersionId => Str
43              
44             The policy version ID.
45              
46              
47             =head2 _request_id => Str
48              
49              
50             =cut
51