File Coverage

blib/lib/Paws/Rekognition/SearchFacesByImageResponse.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::Rekognition::SearchFacesByImageResponse;
3 1     1   586 use Moose;
  1         5  
  1         12  
4             has FaceMatches => (is => 'ro', isa => 'ArrayRef[Paws::Rekognition::FaceMatch]');
5             has SearchedFaceBoundingBox => (is => 'ro', isa => 'Paws::Rekognition::BoundingBox');
6             has SearchedFaceConfidence => (is => 'ro', isa => 'Num');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::Rekognition::SearchFacesByImageResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 FaceMatches => ArrayRef[L<Paws::Rekognition::FaceMatch>]
20              
21             An array of faces that match the input face, along with the confidence
22             in the match.
23              
24              
25             =head2 SearchedFaceBoundingBox => L<Paws::Rekognition::BoundingBox>
26              
27             The bounding box around the face in the input image that Amazon
28             Rekognition used for the search.
29              
30              
31             =head2 SearchedFaceConfidence => Num
32              
33             The level of confidence that the C<searchedFaceBoundingBox>, contains a
34             face.
35              
36              
37             =head2 _request_id => Str
38              
39              
40             =cut
41              
42             1;