Skip to main content

configuration_set_event_destinations

Creates, updates, deletes or gets a configuration_set_event_destination resource or lists configuration_set_event_destinations in a region

Overview

Nameconfiguration_set_event_destinations
TypeResource
DescriptionResource Type definition for AWS::SES::ConfigurationSetEventDestination
Idaws.ses.configuration_set_event_destinations

Fields

NameDatatypeDescription
idstring
configuration_set_namestringThe name of the configuration set that contains the event destination.
event_destinationobjectThe event destination object.
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTConfigurationSetName, EventDestination, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all properties from an individual configuration_set_event_destination.

SELECT
region,
id,
configuration_set_name,
event_destination
FROM aws.ses.configuration_set_event_destinations
WHERE region = 'us-east-1' AND data__Identifier = '<Id>';

INSERT example

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

/*+ create */
INSERT INTO aws.ses.configuration_set_event_destinations (
ConfigurationSetName,
EventDestination,
region
)
SELECT
'{{ ConfigurationSetName }}',
'{{ EventDestination }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM aws.ses.configuration_set_event_destinations
WHERE data__Identifier = '<Id>'
AND region = 'us-east-1';

Permissions

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

Create

ses:CreateConfigurationSetEventDestination,
ses:GetConfigurationSetEventDestinations,
ses:DescribeConfigurationSet

Update

ses:UpdateConfigurationSetEventDestination,
ses:GetConfigurationSetEventDestinations

Delete

ses:DeleteConfigurationSetEventDestination

Read

ses:GetConfigurationSetEventDestinations,
ses:DescribeConfigurationSet