Skip to main content

data_integration_events

Creates, updates, deletes, gets or lists a data_integration_events resource.

Overview

Namedata_integration_events
TypeResource
Idaws.supplychain.data_integration_events

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
dataset_target_detailsobjectThe target dataset details for a DATASET event type.
event_group_idstringEvent identifier (for example, orderId for InboundOrder) used for data sharding or partitioning.
event_idstringThe unique event identifier. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>)
event_timestampstring (date-time)The event timestamp (in epoch seconds).
event_typestringThe data event type. (scn.data.forecast, scn.data.inventorylevel, scn.data.inboundorder, scn.data.inboundorderline, scn.data.inboundorderlineschedule, scn.data.outboundorderline, scn.data.outboundshipment, scn.data.processheader, scn.data.processoperation, scn.data.processproduct, scn.data.reservation, scn.data.shipment, scn.data.shipmentstop, scn.data.shipmentstoporder, scn.data.supplyplan, scn.data.dataset)
instance_idstringThe AWS Supply Chain instance identifier. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_data_integration_eventselectinstance_id, event_id, regionEnables you to programmatically view an Amazon Web Services Supply Chain Data Integration Event. Developers can view the eventType, eventGroupId, eventTimestamp, datasetTarget, datasetLoadExecution.
list_data_integration_eventsselectinstance_id, regioneventType, nextToken, maxResultsEnables you to programmatically list all data integration events for the provided Amazon Web Services Supply Chain instance.

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.

NameDatatypeDescription
event_idstringThe unique event identifier.
instance_idstringThe Amazon Web Services Supply Chain instance identifier.
regionstringAWS region (default: us-east-1)
eventTypestringList data integration events for the specified eventType.
maxResultsintegerSpecify the maximum number of data integration events to fetch in one paginated request.
nextTokenstringThe pagination token to fetch the next page of the data integration events.

SELECT examples

Enables you to programmatically view an Amazon Web Services Supply Chain Data Integration Event. Developers can view the eventType, eventGroupId, eventTimestamp, datasetTarget, datasetLoadExecution.

SELECT
dataset_target_details,
event_group_id,
event_id,
event_timestamp,
event_type,
instance_id
FROM aws.supplychain.data_integration_events
WHERE instance_id = '{{ instance_id }}' -- required
AND event_id = '{{ event_id }}' -- required
AND region = '{{ region }}' -- required
;