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

.NET
Go
Java
Python
TypeScript