interface ConstraintsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnTaskTemplate.ConstraintsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnTaskTemplate_ConstraintsProperty |
Java | software.amazon.awscdk.services.connect.CfnTaskTemplate.ConstraintsProperty |
Python | aws_cdk.aws_connect.CfnTaskTemplate.ConstraintsProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnTaskTemplate » ConstraintsProperty |
Describes constraints that apply to the template fields.
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 constraintsProperty: connect.CfnTaskTemplate.ConstraintsProperty = {
invisibleFields: [{
id: {
name: 'name',
},
}],
readOnlyFields: [{
id: {
name: 'name',
},
}],
requiredFields: [{
id: {
name: 'name',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| invisible | IResolvable | (IResolvable | Invisible)[] | Lists the fields that are invisible to agents. |
| read | IResolvable | (IResolvable | Read)[] | Lists the fields that are read-only to agents, and cannot be edited. |
| required | IResolvable | (IResolvable | Required)[] | Lists the fields that are required to be filled by agents. |
invisibleFields?
Type:
IResolvable | (IResolvable | Invisible)[]
(optional)
Lists the fields that are invisible to agents.
readOnlyFields?
Type:
IResolvable | (IResolvable | Read)[]
(optional)
Lists the fields that are read-only to agents, and cannot be edited.
requiredFields?
Type:
IResolvable | (IResolvable | Required)[]
(optional)
Lists the fields that are required to be filled by agents.

.NET
Go
Java
Python
TypeScript