AWS Fundamentals Logo
AWS Fundamentals
AWS::AppIntegrations::EventIntegration

AppIntegrations EventIntegration

Resource Type definition for AWS::AppIntegrations::EventIntegration

Properties

5 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
EventBridgeBus
string
RequiredCreate-only
EventFilter
EventFilter
RequiredCreate-only
Name
string
RequiredCreate-only
Description
string
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
EventIntegrationArnstringThe Amazon Resource Name (ARN) of the event integration.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::AppIntegrations::EventIntegration

Resources:
  MyResource:
    Type: AWS::AppIntegrations::EventIntegration
    Properties:
      Name: "my-name"
      EventBridgeBus: "my-eventbridgebus"
      EventFilter: "value"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

app-integrations:CreateEventIntegrationapp-integrations:TagResource

read

app-integrations:GetEventIntegrationapp-integrations:ListTagsForResource

list

app-integrations:ListEventIntegrations

update

app-integrations:GetEventIntegrationapp-integrations:UpdateEventIntegrationapp-integrations:TagResourceapp-integrations:UntagResource

delete

app-integrations:DeleteEventIntegration

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceAppIntegrations
Properties6
Required3
TaggingSupported
Primary IDName

Supported Operations

CreateReadListUpdateDelete

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

NameEventBridgeBusEventFilter

External Links