File Coverage

blib/lib/Paws/EC2/ConfirmProductInstanceResult.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::EC2::ConfirmProductInstanceResult;
3 1     1   705 use Moose;
  1     1   3  
  1         8  
  1         541  
  1         4  
  1         10  
4             has OwnerId => (is => 'ro', isa => 'Str', request_name => 'ownerId', traits => ['NameInRequest',]);
5             has Return => (is => 'ro', isa => 'Bool', request_name => 'return', traits => ['NameInRequest',]);
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::EC2::ConfirmProductInstanceResult
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 OwnerId => Str
20              
21             The AWS account ID of the instance owner. This is only present if the
22             product code is attached to the instance.
23              
24              
25             =head2 Return => Bool
26              
27             The return value of the request. Returns C<true> if the specified
28             product code is owned by the requester and associated with the
29             specified instance.
30              
31              
32             =head2 _request_id => Str
33              
34              
35             =cut
36