interface AssignSlaActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnRule.AssignSlaActionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnRule_AssignSlaActionProperty |
Java | software.amazon.awscdk.services.connect.CfnRule.AssignSlaActionProperty |
Python | aws_cdk.aws_connect.CfnRule.AssignSlaActionProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnRule » AssignSlaActionProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const assignSlaActionProperty: connect.CfnRule.AssignSlaActionProperty = {
caseSlaConfiguration: {
name: 'name',
targetSlaMinutes: 123,
type: 'type',
// the properties below are optional
fieldId: 'fieldId',
targetFieldValues: [{
stringValue: 'stringValue',
}],
},
slaAssignmentType: 'slaAssignmentType',
};
Properties
| Name | Type | Description |
|---|---|---|
| case | IResolvable | Case | The SLA configuration for cases. |
| sla | string | The type of SLA assignment. |
caseSlaConfiguration
Type:
IResolvable | Case
The SLA configuration for cases.
slaAssignmentType
Type:
string
The type of SLA assignment.

.NET
Go
Java
Python
TypeScript