interface CfnEventIntegrationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppIntegrations.Mixins.CfnEventIntegrationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappintegrations/mixins#CfnEventIntegrationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appintegrations.mixins.CfnEventIntegrationMixinProps |
Python | aws_cdk.mixins_preview.aws_appintegrations.mixins.CfnEventIntegrationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appintegrations » mixins » CfnEventIntegrationMixinProps |
Properties for CfnEventIntegrationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appintegrations_mixins } from '@aws-cdk/mixins-preview/aws-appintegrations';
const cfnEventIntegrationMixinProps: appintegrations_mixins.CfnEventIntegrationMixinProps = {
description: 'description',
eventBridgeBus: 'eventBridgeBus',
eventFilter: {
source: 'source',
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The event integration 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. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
description?
Type:
string
(optional)
The event integration description.
eventBridgeBus?
Type:
string
(optional)
The Amazon EventBridge bus for the event integration.
eventFilter?
Type:
IResolvable | Event
(optional)
The event integration filter.
name?
Type:
string
(optional)
The name of the event integration.
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