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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlywheel.TaskConfigProperty
static final class
An implementation forCfnFlywheel.TaskConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLanguageCode
Language code for the language that the model supports.- See Also:
-
getDocumentClassificationConfig
Configuration required for a document classification model.- See Also:
-
getEntityRecognitionConfig
Configuration required for an entity recognition model.- See Also:
-
builder
-