Skip to main content

event_integrations

Creates, updates, deletes or gets an event_integration resource or lists event_integrations in a region

Overview

Nameevent_integrations
TypeResource
DescriptionResource Type definition for AWS::AppIntegrations::EventIntegration
Idawscc.appintegrations.event_integrations

Fields

NameDatatypeDescription
descriptionstringThe event integration description.
event_integration_arnstringThe Amazon Resource Name (ARN) of the event integration.
namestringThe name of the event integration.
event_bridge_busstringThe Amazon Eventbridge bus for the event integration.
event_filterobjectThe EventFilter (source) associated with the event integration.
tagsarrayThe tags (keys and values) associated with the event integration.
regionstringAWS region.

For more information, see AWS::AppIntegrations::EventIntegration.

Methods

NameResourceAccessible byRequired Params
create_resourceevent_integrationsINSERTName, EventBridgeBus, EventFilter, region
delete_resourceevent_integrationsDELETEIdentifier, region
update_resourceevent_integrationsUPDATEIdentifier, PatchDocument, region
list_resourcesevent_integrations_list_onlySELECTregion
get_resourceevent_integrationsSELECTIdentifier, region

SELECT examples

Gets all properties from an individual event_integration.

SELECT
region,
description,
event_integration_arn,
name,
event_bridge_bus,
event_filter,
tags
FROM awscc.appintegrations.event_integrations
WHERE
region = 'us-east-1' AND
Identifier = '{{ name }}';

INSERT example

Use the following StackQL query and manifest file to create a new event_integration resource, using stack-deploy.

/*+ create */
INSERT INTO awscc.appintegrations.event_integrations (
Name,
EventBridgeBus,
EventFilter,
region
)
SELECT
'{{ name }}',
'{{ event_bridge_bus }}',
'{{ event_filter }}',
'{{ region }}';

UPDATE example

Use the following StackQL query and manifest file to update a event_integration resource, using stack-deploy.

/*+ update */
UPDATE awscc.appintegrations.event_integrations
SET PatchDocument = string('{{ {
"Description": description,
"Tags": tags
} | generate_patch_document }}')
WHERE
region = '{{ region }}' AND
Identifier = '{{ name }}';

DELETE example

/*+ delete */
DELETE FROM awscc.appintegrations.event_integrations
WHERE
Identifier = '{{ name }}' AND
region = 'us-east-1';

Permissions

To operate on the event_integrations resource, the following permissions are required:

app-integrations:CreateEventIntegration,
app-integrations:TagResource