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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRule.AssignSlaActionPropertystatic final classAn implementation forCfnRule.AssignSlaActionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The SLA configuration for cases.The type of SLA assignment.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCaseSlaConfiguration
The SLA configuration for cases.Returns union: either
IResolvableorCfnRule.CaseSlaConfigurationProperty- See Also:
-
getSlaAssignmentType
The type of SLA assignment.- See Also:
-
builder
-