interface FieldProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnTaskTemplatePropsMixin.FieldProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnTaskTemplatePropsMixin_FieldProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnTaskTemplatePropsMixin.FieldProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnTaskTemplatePropsMixin.FieldProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » 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 { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const fieldProperty: connect.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