Resource: aws_appintegrations_event_integration

Provides an Amazon AppIntegrations Event Integration resource.

Example Usage

resource "aws_appintegrations_event_integration" "example" {
  name            = "example-name"
  description     = "Example Description"
  eventbridge_bus = "default"

  event_filter {
    source = "aws.partner/examplepartner.com"
  }

  tags = {
    "Name" = "Example Event Integration"
  }
}

Argument Reference

This resource supports the following arguments:

A event_filter block supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import Amazon AppIntegrations Event Integrations using the name. For example:

import {
  to = aws_appintegrations_event_integration.example
  id = "example-name"
}

Using terraform import, import Amazon AppIntegrations Event Integrations using the name. For example:

% terraform import aws_appintegrations_event_integration.example example-name