interface RuleTriggerEventSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnRulePropsMixin.RuleTriggerEventSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnRulePropsMixin_RuleTriggerEventSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnRulePropsMixin.RuleTriggerEventSourceProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnRulePropsMixin.RuleTriggerEventSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnRulePropsMixin » RuleTriggerEventSourceProperty |
The name of the event source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const ruleTriggerEventSourceProperty: connect_mixins.CfnRulePropsMixin.RuleTriggerEventSourceProperty = {
eventSourceName: 'eventSourceName',
integrationAssociationArn: 'integrationAssociationArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| event | string | The name of the event source. |
| integration | string | The Amazon Resource Name (ARN) of the integration association. |
eventSourceName?
Type:
string
(optional)
The name of the event source.
integrationAssociationArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the integration association.
IntegrationAssociationArn is required if TriggerEventSource is one of the following values: OnZendeskTicketCreate | OnZendeskTicketStatusUpdate | OnSalesforceCaseCreate

.NET
Go
Java
Python
TypeScript