aws-cdk-lib.aws_connect.CfnEvaluationForm.SingleSelectQuestionRuleCategoryAutomationProperty

interface SingleSelectQuestionRuleCategoryAutomationProperty

LanguageType name
.NETAmazon.CDK.AWS.Connect.CfnEvaluationForm.SingleSelectQuestionRuleCategoryAutomationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEvaluationForm_SingleSelectQuestionRuleCategoryAutomationProperty
Javasoftware.amazon.awscdk.services.connect.CfnEvaluationForm.SingleSelectQuestionRuleCategoryAutomationProperty
Pythonaws_cdk.aws_connect.CfnEvaluationForm.SingleSelectQuestionRuleCategoryAutomationProperty
TypeScript aws-cdk-lib » aws_connect » CfnEvaluationForm » SingleSelectQuestionRuleCategoryAutomationProperty

Information about the automation option based on a rule category for a single select question.

Length Constraints : Minimum length of 1. Maximum length of 50.

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 singleSelectQuestionRuleCategoryAutomationProperty: connect.CfnEvaluationForm.SingleSelectQuestionRuleCategoryAutomationProperty = {
  category: 'category',
  condition: 'condition',
  optionRefId: 'optionRefId',
};

Properties

NameTypeDescription
categorystringThe category name, as defined in Rules.
conditionstringThe condition to apply for the automation option.
optionRefIdstringThe identifier of the answer option. An identifier must be unique within the question.

category

Type: string

The category name, as defined in Rules.

Minimum : 1

Maximum : 50


condition

Type: string

The condition to apply for the automation option.

If the condition is PRESENT, then the option is applied when the contact data includes the category. Similarly, if the condition is NOT_PRESENT, then the option is applied when the contact data does not include the category.

Allowed values : PRESENT | NOT_PRESENT

Maximum : 50


optionRefId

Type: string

The identifier of the answer option. An identifier must be unique within the question.

Length Constraints : Minimum length of 1. Maximum length of 40.