Interface CfnRule.CreateCaseActionProperty

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

@Stability(Stable) public static interface CfnRule.CreateCaseActionProperty extends software.amazon.jsii.JsiiSerializable
The definition for create case action.

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.*;
 Object emptyValue;
 CreateCaseActionProperty createCaseActionProperty = CreateCaseActionProperty.builder()
         .fields(List.of(FieldProperty.builder()
                 .id("id")
                 .value(FieldValueProperty.builder()
                         .booleanValue(false)
                         .doubleValue(123)
                         .emptyValue(emptyValue)
                         .stringValue("stringValue")
                         .build())
                 .build()))
         .templateId("templateId")
         .build();
 

See Also: