Interface CfnTaskTemplate.IFieldProperty
Describes a single task template field.
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTaskTemplate.IFieldProperty
Syntax (vb)
Public Interface CfnTaskTemplate.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. |
| SingleSelectOptions | A list of options for a single select field. |
| Type | Indicates the type of field. |
Properties
Description
The description of the field.
string? Description { get; }
Property Value
Remarks
Id
The unique identifier for the field.
object Id { get; }
Property Value
Remarks
SingleSelectOptions
A list of options for a single select field.
string[]? SingleSelectOptions { get; }
Property Value
string[]
Remarks
Type
Indicates the type of field.
string Type { get; }
Property Value
Remarks
Following are the valid field types: NAME DESCRIPTION | SCHEDULED_TIME | QUICK_CONNECT | URL | NUMBER | TEXT | TEXT_AREA | DATE_TIME | BOOLEAN | SINGLE_SELECT | EMAIL