PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::CloudSearchDomain; use Moose; sub service { 'cloudsearchdomain' } sub signing_name { 'cloudsearch' } sub version { '2013-01-01' } sub flattened_arrays { 0 } has max_attempts => (is => 'ro', isa => 'Int', default => 5); has retry => (is => 'ro', isa => 'HashRef', default => sub { { base => 'rand', type => 'exponential', growth_factor => 2 } }); has retriables => (is => 'ro', isa => 'ArrayRef', default => sub { [ ] }); with 'Paws::API::Caller', 'Paws::API::EndpointResolver', 'Paws::Net::V4Signature', 'Paws::Net::RestJsonCaller'; sub Search { my $self = shift; my $call_object = $self->new_with_coercions('Paws::CloudSearchDomain::Search', @_); return $self->caller->do_call($self, $call_object); } sub Suggest { my $self = shift; my $call_object = $self->new_with_coercions('Paws::CloudSearchDomain::Suggest', @_); return $self->caller->do_call($self, $call_object); } sub UploadDocuments { my $self = shift; my $call_object = $self->new_with_coercions('Paws::CloudSearchDomain::UploadDocuments', @_); return $self->caller->do_call($self, $call_object); } sub operations { qw/Search Suggest UploadDocuments / } 1; ### main pod documentation begin ### =head1 NAME Paws::CloudSearchDomain - Perl Interface to AWS Amazon CloudSearch Domain =head1 SYNOPSIS use Paws; my $obj = Paws->service('CloudSearchDomain'); my $res = $obj->Method( Arg1 => $val1, Arg2 => [ 'V1', 'V2' ], # if Arg3 is an object, the HashRef will be used as arguments to the constructor # of the arguments type Arg3 => { Att1 => 'Val1' }, # if Arg4 is an array of objects, the HashRefs will be passed as arguments to # the constructor of the arguments type Arg4 => [ { Att1 => 'Val1' }, { Att1 => 'Val2' } ], ); =head1 DESCRIPTION You use the AmazonCloudSearch2013 API to upload documents to a search domain and search those documents. The endpoints for submitting C, C, and C requests are domain-specific. To get the endpoints for your domain, use the Amazon CloudSearch configuration service C action. The domain endpoints are also displayed on the domain dashboard in the Amazon CloudSearch console. You submit suggest requests to the search endpoint. For more information, see the Amazon CloudSearch Developer Guide (http://docs.aws.amazon.com/cloudsearch/latest/developerguide). For the AWS API documentation, see L =head1 METHODS =head2 Search =over =item Query => Str =item [Cursor => Str] =item [Expr => Str] =item [Facet => Str] =item [FilterQuery => Str] =item [Highlight => Str] =item [Partial => Bool] =item [QueryOptions => Str] =item [QueryParser => Str] =item [Return => Str] =item [Size => Int] =item [Sort => Str] =item [Start => Int] =item [Stats => Str] =back Each argument is described in detail in: L Returns: a L instance Retrieves a list of documents that match the specified search criteria. How you specify the search criteria depends on which query parser you use. Amazon CloudSearch supports four query parsers: =over =item * C: search all C and C fields for the specified string. Search for phrases, individual terms, and prefixes. =item * C: search specific fields, construct compound queries using Boolean operators, and use advanced features such as term boosting and proximity searching. =item * C: specify search criteria using the Apache Lucene query parser syntax. =item * C: specify search criteria using the simplified subset of the Apache Lucene query parser syntax defined by the DisMax query parser. =back For more information, see Searching Your Data (http://docs.aws.amazon.com/cloudsearch/latest/developerguide/searching.html) in the I. The endpoint for submitting C requests is domain-specific. You submit search requests to a domain's search endpoint. To get the search endpoint for your domain, use the Amazon CloudSearch configuration service C action. A domain's endpoints are also displayed on the domain dashboard in the Amazon CloudSearch console. =head2 Suggest =over =item Query => Str =item Suggester => Str =item [Size => Int] =back Each argument is described in detail in: L Returns: a L instance Retrieves autocomplete suggestions for a partial query string. You can use suggestions enable you to display likely matches before users finish typing. In Amazon CloudSearch, suggestions are based on the contents of a particular text field. When you request suggestions, Amazon CloudSearch finds all of the documents whose values in the suggester field start with the specified query string. The beginning of the field must match the query string to be considered a match. For more information about configuring suggesters and retrieving suggestions, see Getting Suggestions (http://docs.aws.amazon.com/cloudsearch/latest/developerguide/getting-suggestions.html) in the I. The endpoint for submitting C requests is domain-specific. You submit suggest requests to a domain's search endpoint. To get the search endpoint for your domain, use the Amazon CloudSearch configuration service C action. A domain's endpoints are also displayed on the domain dashboard in the Amazon CloudSearch console. =head2 UploadDocuments =over =item ContentType => Str =item Documents => Str =back Each argument is described in detail in: L Returns: a L instance Posts a batch of documents to a search domain for indexing. A document batch is a collection of add and delete operations that represent the documents you want to add, update, or delete from your domain. Batches can be described in either JSON or XML. Each item that you want Amazon CloudSearch to return as a search result (such as a product) is represented as a document. Every document has a unique ID and one or more fields that contain the data that you want to search and return in results. Individual documents cannot contain more than 1 MB of data. The entire batch cannot exceed 5 MB. To get the best possible upload performance, group add and delete operations in batches that are close the 5 MB limit. Submitting a large volume of single-document batches can overload a domain's document service. The endpoint for submitting C requests is domain-specific. To get the document endpoint for your domain, use the Amazon CloudSearch configuration service C action. A domain's endpoints are also displayed on the domain dashboard in the Amazon CloudSearch console. For more information about formatting your data for Amazon CloudSearch, see Preparing Your Data (http://docs.aws.amazon.com/cloudsearch/latest/developerguide/preparing-data.html) in the I. For more information about uploading data for indexing, see Uploading Data (http://docs.aws.amazon.com/cloudsearch/latest/developerguide/uploading-data.html) in the I. =head1 PAGINATORS Paginator methods are helpers that repetively call methods that return partial results =head1 SEE ALSO This service class forms part of L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut