Interface CfnRule.AssignSlaActionProperty

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

@Stability(Stable) public static interface CfnRule.AssignSlaActionProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 AssignSlaActionProperty assignSlaActionProperty = AssignSlaActionProperty.builder()
         .caseSlaConfiguration(CaseSlaConfigurationProperty.builder()
                 .name("name")
                 .targetSlaMinutes(123)
                 .type("type")
                 // the properties below are optional
                 .fieldId("fieldId")
                 .targetFieldValues(List.of(SlaTargetFieldValueProperty.builder()
                         .stringValue("stringValue")
                         .build()))
                 .build())
         .slaAssignmentType("slaAssignmentType")
         .build();
 

See Also: