Interface CfnTaskTemplate.FieldProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTaskTemplate.FieldProperty.Jsii$Proxy
Enclosing class:
CfnTaskTemplate

@Stability(Stable) public static interface CfnTaskTemplate.FieldProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.connect.*;
 FieldProperty fieldProperty = FieldProperty.builder()
         .id(FieldIdentifierProperty.builder()
                 .name("name")
                 .build())
         .type("type")
         // the properties below are optional
         .description("description")
         .singleSelectOptions(List.of("singleSelectOptions"))
         .build();
 

See Also: