interface RuleTriggerEventSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnRulePropsMixin.RuleTriggerEventSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnRulePropsMixin_RuleTriggerEventSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnRulePropsMixin.RuleTriggerEventSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnRulePropsMixin.RuleTriggerEventSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » 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 { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const ruleTriggerEventSourceProperty: connect.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