Interface CfnFlywheelPropsMixin.TaskConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlywheelPropsMixin.TaskConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFlywheelPropsMixin
@Stability(Stable)
public static interface CfnFlywheelPropsMixin.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.cfnpropertymixins.services.comprehend.*;
TaskConfigProperty taskConfigProperty = TaskConfigProperty.builder()
.documentClassificationConfig(DocumentClassificationConfigProperty.builder()
.labels(List.of("labels"))
.mode("mode")
.build())
.entityRecognitionConfig(EntityRecognitionConfigProperty.builder()
.entityTypes(List.of(EntityTypesListItemProperty.builder()
.type("type")
.build()))
.build())
.languageCode("languageCode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlywheelPropsMixin.TaskConfigPropertystatic final classAn implementation forCfnFlywheelPropsMixin.TaskConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDocumentClassificationConfig
Configuration required for a document classification model.Returns union: either
IResolvableorCfnFlywheelPropsMixin.DocumentClassificationConfigProperty- See Also:
-
getEntityRecognitionConfig
Configuration required for an entity recognition model.Returns union: either
IResolvableorCfnFlywheelPropsMixin.EntityRecognitionConfigProperty- See Also:
-
getLanguageCode
Language code for the language that the model supports.- See Also:
-
builder
-