line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudSearchDomain::SearchResponse; |
3
|
1
|
|
|
1
|
|
408
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has Facets => (is => 'ro', isa => 'Paws::CloudSearchDomain::Facets', traits => ['NameInRequest'], request_name => 'facets'); |
5
|
|
|
|
|
|
|
has Hits => (is => 'ro', isa => 'Paws::CloudSearchDomain::Hits', traits => ['NameInRequest'], request_name => 'hits'); |
6
|
|
|
|
|
|
|
has Stats => (is => 'ro', isa => 'Paws::CloudSearchDomain::Stats', traits => ['NameInRequest'], request_name => 'stats'); |
7
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Paws::CloudSearchDomain::SearchStatus', traits => ['NameInRequest'], request_name => 'status'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::CloudSearchDomain::SearchResponse |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 Facets => L<Paws::CloudSearchDomain::Facets> |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
The requested facet information. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 Hits => L<Paws::CloudSearchDomain::Hits> |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The documents that match the search criteria. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 Stats => L<Paws::CloudSearchDomain::Stats> |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
The requested field statistics information. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head2 Status => L<Paws::CloudSearchDomain::SearchStatus> |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
The status information returned for the search request. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head2 _request_id => Str |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=cut |
45
|
|
|
|
|
|
|
|