aws.glue.get_user_defined_function
Example SQL Queries
SELECT * FROMaws.glue.get_user_defined_functionWHERE"database_name" = 'VALUE'AND "function_name" = 'VALUE';Description
Retrieves a specified function definition from the Data Catalog.
Table Definition
| Column Name | Column Data Type |
|---|---|
| database_name Required Input Column The name of the catalog database where the function is located. | VARCHAR |
| function_name Required Input Column The name of the function. | VARCHAR |
| catalog_id Input Column The ID of the Data Catalog where the function to be retrieved is located. If none is provided, the Amazon Web Services account ID is used by default. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| user_defined_function The requested function definition. | STRUCT( |
Show child fields
| |