interface FieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnTaskTemplatePropsMixin.FieldProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnTaskTemplatePropsMixin_FieldProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnTaskTemplatePropsMixin.FieldProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnTaskTemplatePropsMixin.FieldProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnTaskTemplatePropsMixin » FieldProperty |
Describes a single task template field.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const fieldProperty: connect_mixins.CfnTaskTemplatePropsMixin.FieldProperty = {
description: 'description',
id: {
name: 'name',
},
singleSelectOptions: ['singleSelectOptions'],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the field. |
| id? | IResolvable | Field | The unique identifier for the field. |
| single | string[] | A list of options for a single select field. |
| type? | string | Indicates the type of field. |
description?
Type:
string
(optional)
The description of the field.
id?
Type:
IResolvable | Field
(optional)
The unique identifier for the field.
singleSelectOptions?
Type:
string[]
(optional)
A list of options for a single select field.
type?
Type:
string
(optional)
Indicates the type of field.
Following are the valid field types: NAME DESCRIPTION | SCHEDULED_TIME | QUICK_CONNECT | URL | NUMBER | TEXT | TEXT_AREA | DATE_TIME | BOOLEAN | SINGLE_SELECT | EMAIL

.NET
Go
Java
Python
TypeScript