Interface CfnFlywheel.DocumentClassificationConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlywheel.DocumentClassificationConfigProperty.Jsii$Proxy
- Enclosing class:
CfnFlywheel
@Stability(Stable)
public static interface CfnFlywheel.DocumentClassificationConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration required for a document classification model.
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.*; DocumentClassificationConfigProperty documentClassificationConfigProperty = DocumentClassificationConfigProperty.builder() .mode("mode") // the properties below are optional .labels(List.of("labels")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlywheel.DocumentClassificationConfigProperty
static final class
An implementation forCfnFlywheel.DocumentClassificationConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMode
Classification mode indicates whether the documents areMULTI_CLASS
orMULTI_LABEL
.- See Also:
-
getLabels
One or more labels to associate with the custom classifier.- See Also:
-
builder
-