Skip to main content

blacklist_reports

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

Overview

Nameblacklist_reports
TypeResource
Idaws.sesv2.blacklist_reports

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
blacklist_reportobjectAn object that contains information about a blacklist that one of your dedicated IP addresses appears on.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_blacklist_reportsselectBlacklistItemNames, regionRetrieve a list of the blacklists that your dedicated IP addresses appear on.

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
BlacklistItemNamesarrayA list of IP addresses that you want to retrieve blacklist information about. You can only specify the dedicated IP addresses that you use to send email using Amazon SES or Amazon Pinpoint.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieve a list of the blacklists that your dedicated IP addresses appear on.

SELECT
blacklist_report
FROM aws.sesv2.blacklist_reports
WHERE BlacklistItemNames = '{{ BlacklistItemNames }}' -- required
AND region = '{{ region }}' -- required
;