Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-tasktemplate-field.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-tasktemplate-field.html#cfn-connect-tasktemplate-field-description

Id

The unique identifier for the field.

object Id { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-tasktemplate-field.html#cfn-connect-tasktemplate-field-id

Type union: either IResolvable or CfnTaskTemplate.IFieldIdentifierProperty

SingleSelectOptions

A list of options for a single select field.

string[]? SingleSelectOptions { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-tasktemplate-field.html#cfn-connect-tasktemplate-field-singleselectoptions

Type

Indicates the type of field.

string Type { get; }
Property Value

string

Remarks

Following are the valid field types: NAME DESCRIPTION | SCHEDULED_TIME | QUICK_CONNECT | URL | NUMBER | TEXT | TEXT_AREA | DATE_TIME | BOOLEAN | SINGLE_SELECT | EMAIL

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-tasktemplate-field.html#cfn-connect-tasktemplate-field-type

Back to top Generated by DocFX