interface CfnEventIntegrationProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.AppIntegrations.CfnEventIntegrationProps | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappintegrations#CfnEventIntegrationProps | 
  Java | software.amazon.awscdk.services.appintegrations.CfnEventIntegrationProps | 
  Python | aws_cdk.aws_appintegrations.CfnEventIntegrationProps | 
  TypeScript  | aws-cdk-lib » aws_appintegrations » CfnEventIntegrationProps | 
Properties for defining a CfnEventIntegration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appintegrations as appintegrations } from 'aws-cdk-lib';
const cfnEventIntegrationProps: appintegrations.CfnEventIntegrationProps = {
  eventBridgeBus: 'eventBridgeBus',
  eventFilter: {
    source: 'source',
  },
  name: 'name',
  // the properties below are optional
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| event | string | The Amazon EventBridge bus for the event integration. | 
| event | IResolvable | Event | The event integration filter. | 
| name | string | The name of the event integration. | 
| description? | string | The event integration description. | 
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. | 
eventBridgeBus
Type:
string
The Amazon EventBridge bus for the event integration.
eventFilter
Type:
IResolvable | Event
The event integration filter.
name
Type:
string
The name of the event integration.
description?
Type:
string
(optional)
The event integration description.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

 .NET
 Go
 Java
 Python
 TypeScript