Interface CfnTaskTemplate.IFieldProperty
Describes a single task template field.
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IFieldProperty
Syntax (vb)
Public Interface IFieldProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Connect;
var fieldProperty = new FieldProperty {
Id = new FieldIdentifierProperty {
Name = "name"
},
Type = "type",
// the properties below are optional
Description = "description",
SingleSelectOptions = new [] { "singleSelectOptions" }
};
Synopsis
Properties
Description | The description of the field. |
Id | The unique identifier for the field. |
Single |
A list of options for a single select field. |
Type | Indicates the type of field. |
Properties
Description
The description of the field.
virtual string Description { get; }
Property Value
System.
Remarks
Id
The unique identifier for the field.
object Id { get; }
Property Value
System.
Remarks
SingleSelectOptions
A list of options for a single select field.
virtual string[] SingleSelectOptions { get; }
Property Value
System.
Remarks
Type
Indicates the type of field.
string Type { get; }
Property Value
System.
Remarks
Following are the valid field types: NAME
DESCRIPTION
| SCHEDULED_TIME
| QUICK_CONNECT
| URL
| NUMBER
| TEXT
| TEXT_AREA
| DATE_TIME
| BOOLEAN
| SINGLE_SELECT
| EMAIL