Interface CfnRule.RuleTriggerEventSourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRule.RuleTriggerEventSourceProperty.Jsii$Proxy
Enclosing class:
CfnRule

@Stability(Stable) public static interface CfnRule.RuleTriggerEventSourceProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.connect.*;
 RuleTriggerEventSourceProperty ruleTriggerEventSourceProperty = RuleTriggerEventSourceProperty.builder()
         .eventSourceName("eventSourceName")
         // the properties below are optional
         .integrationAssociationArn("integrationAssociationArn")
         .build();
 

See Also: