You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Glue::Types::GetUserDefinedFunctionsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing GetUserDefinedFunctionsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  catalog_id: "CatalogIdString",
  database_name: "NameString",
  pattern: "NameString", # required
  next_token: "Token",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#catalog_idString

The ID of the Data Catalog where the functions to be retrieved are located. If none is provided, the AWS account ID is used by default.

Returns:

  • (String)

    The ID of the Data Catalog where the functions to be retrieved are located.

#database_nameString

The name of the catalog database where the functions are located. If none is provided, functions from all the databases across the catalog will be returned.

Returns:

  • (String)

    The name of the catalog database where the functions are located.

#max_resultsInteger

The maximum number of functions to return in one response.

Returns:

  • (Integer)

    The maximum number of functions to return in one response.

#next_tokenString

A continuation token, if this is a continuation call.

Returns:

  • (String)

    A continuation token, if this is a continuation call.

#patternString

An optional function-name pattern string that filters the function definitions returned.

Returns:

  • (String)

    An optional function-name pattern string that filters the function definitions returned.