GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Paws::Glue::SearchTables(3) User Contributed Perl Documentation Paws::Glue::SearchTables(3)

Paws::Glue::SearchTables - Arguments for method SearchTables on Paws::Glue

This class represents the parameters used for calling the method SearchTables on the AWS Glue 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.

    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<Paws::Glue::SearchTablesResponse> 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 <https://docs.aws.amazon.com/goto/WebAPI/glue/SearchTables>

A unique identifier, consisting of " account_id ".

A list of key-value pairs, and a comparator used to filter the search results. Returns all entities matching the predicate.

The "Comparator" member of the "PropertyPredicate" struct is used only for time fields, and can be omitted for other field types. Also, when comparing string values, such as when "Key=Name", a fuzzy match algorithm is used. The "Key" field (for example, the value of the "Name" field) is split on certain punctuation characters, for example, -, :, #, etc. into tokens. Then each token is exact-match compared with the "Value" member of "PropertyPredicate". For example, if "Key=Name" and "Value=link", tables named "customer-link" and "xx-link-yy" are returned, but "xxlinkyy" is not returned.

The maximum number of tables to return in a single response.

A continuation token, included if this is a continuation call.

Allows you to specify that you want to search the tables shared with your account. The allowable values are "FOREIGN" or "ALL".

  • If set to "FOREIGN", will search the tables shared with your account.
  • If set to "ALL", will search the tables shared with your account, as well as the tables in yor local account.

Valid values are: "FOREIGN", "ALL"

A string used for a text search.

Specifying a value in quotes filters based on an exact match to the value.

A list of criteria for sorting the results by a field name, in an ascending or descending order.

This class forms part of Paws, documenting arguments for method SearchTables in Paws::Glue

The source code is located here: <https://github.com/pplu/aws-sdk-perl>

Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>

2022-06-01 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.