Interface CfnRulePropsMixin.CaseSlaConfigurationProperty

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

@Stability(Stable) public static interface CfnRulePropsMixin.CaseSlaConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The SLA configuration for cases.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.connect.*;
 CaseSlaConfigurationProperty caseSlaConfigurationProperty = CaseSlaConfigurationProperty.builder()
         .fieldId("fieldId")
         .name("name")
         .targetFieldValues(List.of(SlaTargetFieldValueProperty.builder()
                 .stringValue("stringValue")
                 .build()))
         .targetSlaMinutes(123)
         .type("type")
         .build();
 

See Also: