interface EvaluationFormItemEnablementSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnEvaluationForm.EvaluationFormItemEnablementSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnEvaluationForm_EvaluationFormItemEnablementSourceProperty |
Java | software.amazon.awscdk.services.connect.CfnEvaluationForm.EvaluationFormItemEnablementSourceProperty |
Python | aws_cdk.aws_connect.CfnEvaluationForm.EvaluationFormItemEnablementSourceProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnEvaluationForm » EvaluationFormItemEnablementSourceProperty |
An enablement expression source item.
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 evaluationFormItemEnablementSourceProperty: connect.CfnEvaluationForm.EvaluationFormItemEnablementSourceProperty = {
type: 'type',
// the properties below are optional
refId: 'refId',
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | A type of source item. |
| ref | string | A referenceId of the source item. |
type
Type:
string
A type of source item.
refId?
Type:
string
(optional)
A referenceId of the source item.

.NET
Go
Java
Python
TypeScript