inbound_integrations
Creates, updates, deletes, gets or lists an inbound_integrations resource.
Overview
| Name | inbound_integrations |
| Type | Resource |
| Id | aws.glue.inbound_integrations |
Fields
The following fields are returned by SELECT queries:
- describe_inbound_integrations
| Name | Datatype | Description |
|---|---|---|
inbound_integrations | array | A list of inbound integrations. |
marker | string | A value that indicates the starting point for the next set of response records in a subsequent request. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_inbound_integrations | select | region | Returns a list of inbound integrations for the specified integration. |
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
- describe_inbound_integrations
Returns a list of inbound integrations for the specified integration.
SELECT
inbound_integrations,
marker
FROM aws.glue.inbound_integrations
WHERE region = '{{ region }}' -- required
;