Interface CfnRulePropsMixin.AssignSlaActionProperty

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

@Stability(Stable) public static interface CfnRulePropsMixin.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.cfnpropertymixins.services.connect.*;
 AssignSlaActionProperty assignSlaActionProperty = AssignSlaActionProperty.builder()
         .caseSlaConfiguration(CaseSlaConfigurationProperty.builder()
                 .fieldId("fieldId")
                 .name("name")
                 .targetFieldValues(List.of(SlaTargetFieldValueProperty.builder()
                         .stringValue("stringValue")
                         .build()))
                 .targetSlaMinutes(123)
                 .type("type")
                 .build())
         .slaAssignmentType("slaAssignmentType")
         .build();
 

See Also: