Skip to main content

case_event_configurations

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

Overview

Namecase_event_configurations
TypeResource
Idaws.connectcases.case_event_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
enabledbooleanIndicates whether the to broadcast case event data to the customer.
included_dataobjectDetails of what case and related item data is published through the case event stream.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_case_event_configurationselectdomain_id, regionReturns the case event publishing configuration.
put_case_event_configurationreplacedomain_id, region, eventBridgeAdds case event publishing configuration. For a complete list of fields you can add to the event message, see Create case fields in the Amazon Connect Administrator Guide

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
domain_idstringThe unique identifier of the Cases domain.
regionstringAWS region (default: us-east-1)

SELECT examples

Returns the case event publishing configuration.

SELECT
enabled,
included_data
FROM aws.connectcases.case_event_configurations
WHERE domain_id = '{{ domain_id }}' -- required
AND region = '{{ region }}' -- required
;

REPLACE examples

Adds case event publishing configuration. For a complete list of fields you can add to the event message, see Create case fields in the Amazon Connect Administrator Guide

REPLACE aws.connectcases.case_event_configurations
SET
eventBridge = '{{ eventBridge }}'
WHERE
domain_id = '{{ domain_id }}' --required
AND region = '{{ region }}' --required
AND eventBridge = '{{ eventBridge }}' --required;