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` # Generated by default/object.tt package Paws::Kendra::AttributeFilter; use Moose; has AndAllFilters => (is => 'ro', isa => 'ArrayRef[Paws::Kendra::AttributeFilter]'); has ContainsAll => (is => 'ro', isa => 'Paws::Kendra::DocumentAttribute'); has ContainsAny => (is => 'ro', isa => 'Paws::Kendra::DocumentAttribute'); has EqualsTo => (is => 'ro', isa => 'Paws::Kendra::DocumentAttribute'); has GreaterThan => (is => 'ro', isa => 'Paws::Kendra::DocumentAttribute'); has GreaterThanOrEquals => (is => 'ro', isa => 'Paws::Kendra::DocumentAttribute'); has LessThan => (is => 'ro', isa => 'Paws::Kendra::DocumentAttribute'); has LessThanOrEquals => (is => 'ro', isa => 'Paws::Kendra::DocumentAttribute'); has NotFilter => (is => 'ro', isa => 'Paws::Kendra::AttributeFilter'); has OrAllFilters => (is => 'ro', isa => 'ArrayRef[Paws::Kendra::AttributeFilter]'); 1; ### main pod documentation begin ### =head1 NAME Paws::Kendra::AttributeFilter =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::Kendra::AttributeFilter object: $service_obj->Method(Att1 => { AndAllFilters => $value, ..., OrAllFilters => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::Kendra::AttributeFilter object: $result = $service_obj->Method(...); $result->Att1->AndAllFilters =head1 DESCRIPTION Provides filtering the query results based on document attributes. When you use the C or C, filters you can use 2 layers under the first attribute filter. For example, you can use: CAndAllFiltersE> =over =item 1. COrAllFiltersE> =item 2. CEqualToE> =back If you use more than 2 layers, you receive a C exception with the message "C cannot have a depth of more than 2." =head1 ATTRIBUTES =head2 AndAllFilters => ArrayRef[L] Performs a logical C operation on all supplied filters. =head2 ContainsAll => L Returns true when a document contains all of the specified document attributes. This filter is only applicable to C metadata. =head2 ContainsAny => L Returns true when a document contains any of the specified document attributes. This filter is only applicable to C metadata. =head2 EqualsTo => L Performs an equals operation on two document attributes. =head2 GreaterThan => L Performs a greater than operation on two document attributes. Use with a document attribute of type C or C. =head2 GreaterThanOrEquals => L Performs a greater or equals than operation on two document attributes. Use with a document attribute of type C or C. =head2 LessThan => L Performs a less than operation on two document attributes. Use with a document attribute of type C or C. =head2 LessThanOrEquals => L Performs a less than or equals operation on two document attributes. Use with a document attribute of type C or C. =head2 NotFilter => L Performs a logical C operation on all supplied filters. =head2 OrAllFilters => ArrayRef[L] Performs a logical C operation on all supplied filters. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut