Amazon Pinpoint · Schema

CampaignEventFilter

Specifies the settings for events that cause a campaign to be sent.

CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

Properties

Name Type Description
Dimensions object
FilterType object
View JSON Schema on GitHub

JSON Schema

amazon-pinpoint-campaign-event-filter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-pinpoint/refs/heads/main/json-schema/amazon-pinpoint-campaign-event-filter-schema.json",
  "title": "CampaignEventFilter",
  "description": "Specifies the settings for events that cause a campaign to be sent.",
  "type": "object",
  "properties": {
    "Dimensions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventDimensions"
        },
        {
          "description": "The dimension settings of the event filter for the campaign."
        }
      ]
    },
    "FilterType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FilterType"
        },
        {
          "description": "The type of event that causes the campaign to be sent. Valid values are: SYSTEM, sends the campaign when a system event occurs; and, ENDPOINT, sends the campaign when an endpoint event (<link  linkend=\"apps-application-id-events\">Events</link> resource) occurs."
        }
      ]
    }
  },
  "required": [
    "FilterType",
    "Dimensions"
  ]
}