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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRule.TaskActionProperty
static final class
An implementation forCfnRule.TaskActionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContactFlowArn
The Amazon Resource Name (ARN) of the flow. -
getName
The name.Supports variable injection. For more information, see JSONPath reference in the Amazon Connect Administrators Guide .
-
getDescription
The description.Supports variable injection. For more information, see JSONPath reference in the Amazon Connect Administrators Guide .
-
getReferences
Information about the reference when thereferenceType
isURL
.Otherwise, null.
URL
is the only accepted type. (Supports variable injection in theValue
field.) -
builder
- Returns:
- a
CfnRule.TaskActionProperty.Builder
ofCfnRule.TaskActionProperty
-