Interface CfnTemplate.TemplateRuleProperty

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

@Stability(Stable) public static interface CfnTemplate.TemplateRuleProperty extends software.amazon.jsii.JsiiSerializable
An association representing a case rule acting upon a field.

In the Amazon Connect admin website, case rules are known as case field conditions . For more information about case field conditions, see Add case field conditions to a case template .

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.cases.*;
 TemplateRuleProperty templateRuleProperty = TemplateRuleProperty.builder()
         .caseRuleId("caseRuleId")
         // the properties below are optional
         .fieldId("fieldId")
         .build();
 

See Also: