iterable_forms
Creates, updates, deletes, gets or lists an iterable_forms resource.
Overview
| Name | iterable_forms |
| Type | Resource |
| Id | aws.glue.iterable_forms |
Fields
The following fields are returned by SELECT queries:
- batch_get_iterable_forms
- list_iterable_forms
| Name | Datatype | Description |
|---|---|---|
errors | array | The list of errors for items that could not be retrieved. |
items | array | The list of retrieved iterable form items. |
| Name | Datatype | Description |
|---|---|---|
description | string | The description of the item. |
glossary_terms | array | The identifiers of the glossary terms associated with the item. |
item_id | string | The unique identifier of the item. |
item_name | string | The name of the item. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
batch_get_iterable_forms | select | region | Retrieves multiple items from an iterable form on an asset in Glue Data Catalog in a single request. | |
list_iterable_forms | select | region | Lists the items in an iterable form on an asset in Glue Data Catalog. For example, lists the columns of a table asset. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- batch_get_iterable_forms
- list_iterable_forms
Retrieves multiple items from an iterable form on an asset in Glue Data Catalog in a single request.
SELECT
errors,
items
FROM aws.glue.iterable_forms
WHERE region = '{{ region }}' -- required
;
Lists the items in an iterable form on an asset in Glue Data Catalog. For example, lists the columns of a table asset.
SELECT
description,
glossary_terms,
item_id,
item_name
FROM aws.glue.iterable_forms
WHERE region = '{{ region }}' -- required
;