Interface CfnRule.TaskActionProperty

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

@Stability(Stable) public static interface CfnRule.TaskActionProperty extends software.amazon.jsii.JsiiSerializable
Information about the task action.

This field is required if TriggerEventSource is one of the following values: OnZendeskTicketCreate | OnZendeskTicketStatusUpdate | OnSalesforceCaseCreate

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.*;
 TaskActionProperty taskActionProperty = TaskActionProperty.builder()
         .contactFlowArn("contactFlowArn")
         .name("name")
         // the properties below are optional
         .description("description")
         .references(Map.of(
                 "referencesKey", ReferenceProperty.builder()
                         .type("type")
                         .value("value")
                         .build()))
         .build();
 

See Also: