interface AssignSlaActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnRulePropsMixin.AssignSlaActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnRulePropsMixin_AssignSlaActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnRulePropsMixin.AssignSlaActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnRulePropsMixin.AssignSlaActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnRulePropsMixin » 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/cfn-property-mixins';
const assignSlaActionProperty: connect.CfnRulePropsMixin.AssignSlaActionProperty = {
caseSlaConfiguration: {
fieldId: 'fieldId',
name: 'name',
targetFieldValues: [{
stringValue: 'stringValue',
}],
targetSlaMinutes: 123,
type: 'type',
},
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
(optional)
The SLA configuration for cases.
slaAssignmentType?
Type:
string
(optional)
The type of SLA assignment.

.NET
Go
Java
Python
TypeScript