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::Glue::SearchTables; use Moose; has CatalogId => (is => 'ro', isa => 'Str'); has Filters => (is => 'ro', isa => 'ArrayRef[Paws::Glue::PropertyPredicate]'); has MaxResults => (is => 'ro', isa => 'Int'); has NextToken => (is => 'ro', isa => 'Str'); has ResourceShareType => (is => 'ro', isa => 'Str'); has SearchText => (is => 'ro', isa => 'Str'); has SortCriteria => (is => 'ro', isa => 'ArrayRef[Paws::Glue::SortCriterion]'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'SearchTables'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Glue::SearchTablesResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::Glue::SearchTables - Arguments for method SearchTables on L =head1 DESCRIPTION This class represents the parameters used for calling the method SearchTables on the L service. Use the attributes of this class as arguments to method SearchTables. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to SearchTables. =head1 SYNOPSIS my $glue = Paws->service('Glue'); my $SearchTablesResponse = $glue->SearchTables( CatalogId => 'MyCatalogIdString', # OPTIONAL Filters => [ { Comparator => 'EQUALS' , # values: EQUALS, GREATER_THAN, LESS_THAN, GREATER_THAN_EQUALS, LESS_THAN_EQUALS; OPTIONAL Key => 'MyValueString', # max: 1024; OPTIONAL Value => 'MyValueString', # max: 1024; OPTIONAL }, ... ], # OPTIONAL MaxResults => 1, # OPTIONAL NextToken => 'MyToken', # OPTIONAL ResourceShareType => 'FOREIGN', # OPTIONAL SearchText => 'MyValueString', # OPTIONAL SortCriteria => [ { FieldName => 'MyValueString', # max: 1024; OPTIONAL Sort => 'ASC', # values: ASC, DESC; OPTIONAL }, ... ], # OPTIONAL ); # Results: my $NextToken = $SearchTablesResponse->NextToken; my $TableList = $SearchTablesResponse->TableList; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 CatalogId => Str A unique identifier, consisting of C< I >. =head2 Filters => ArrayRef[L] A list of key-value pairs, and a comparator used to filter the search results. Returns all entities matching the predicate. The C member of the C struct is used only for time fields, and can be omitted for other field types. Also, when comparing string values, such as when C, a fuzzy match algorithm is used. The C field (for example, the value of the C field) is split on certain punctuation characters, for example, -, :, #, etc. into tokens. Then each token is exact-match compared with the C member of C. For example, if C and C, tables named C and C are returned, but C is not returned. =head2 MaxResults => Int The maximum number of tables to return in a single response. =head2 NextToken => Str A continuation token, included if this is a continuation call. =head2 ResourceShareType => Str Allows you to specify that you want to search the tables shared with your account. The allowable values are C or C. =over =item * If set to C, will search the tables shared with your account. =item * If set to C, will search the tables shared with your account, as well as the tables in yor local account. =back Valid values are: C<"FOREIGN">, C<"ALL"> =head2 SearchText => Str A string used for a text search. Specifying a value in quotes filters based on an exact match to the value. =head2 SortCriteria => ArrayRef[L] A list of criteria for sorting the results by a field name, in an ascending or descending order. =head1 SEE ALSO This class forms part of L, documenting arguments for method SearchTables in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut