interface CaseSlaConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnRule.CaseSlaConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnRule_CaseSlaConfigurationProperty |
Java | software.amazon.awscdk.services.connect.CfnRule.CaseSlaConfigurationProperty |
Python | aws_cdk.aws_connect.CfnRule.CaseSlaConfigurationProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnRule » CaseSlaConfigurationProperty |
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 { aws_connect as connect } from 'aws-cdk-lib';
const caseSlaConfigurationProperty: connect.CfnRule.CaseSlaConfigurationProperty = {
name: 'name',
targetSlaMinutes: 123,
type: 'type',
// the properties below are optional
fieldId: 'fieldId',
targetFieldValues: [{
stringValue: 'stringValue',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the SLA. |
| target | number | The target SLA time in minutes. |
| type | string | The type of SLA. |
| field | string | The field Id for the SLA. |
| target | IResolvable | (IResolvable | Sla)[] | The target field values for the SLA. |
name
Type:
string
The name of the SLA.
targetSlaMinutes
Type:
number
The target SLA time in minutes.
type
Type:
string
The type of SLA.
fieldId?
Type:
string
(optional)
The field Id for the SLA.
targetFieldValues?
Type:
IResolvable | (IResolvable | Sla)[]
(optional)
The target field values for the SLA.

.NET
Go
Java
Python
TypeScript