Interface CfnFlywheel.TaskConfigProperty

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

@Stability(Stable) public static interface CfnFlywheel.TaskConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration about the model associated with a flywheel.

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.comprehend.*;
 TaskConfigProperty taskConfigProperty = TaskConfigProperty.builder()
         .languageCode("languageCode")
         // the properties below are optional
         .documentClassificationConfig(DocumentClassificationConfigProperty.builder()
                 .mode("mode")
                 // the properties below are optional
                 .labels(List.of("labels"))
                 .build())
         .entityRecognitionConfig(EntityRecognitionConfigProperty.builder()
                 .entityTypes(List.of(EntityTypesListItemProperty.builder()
                         .type("type")
                         .build()))
                 .build())
         .build();
 

See Also: