Interface CfnFlywheel.EntityRecognitionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlywheel.EntityRecognitionConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnFlywheel
@Stability(Stable)
public static interface CfnFlywheel.EntityRecognitionConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration required for an entity recognition 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.*; EntityRecognitionConfigProperty entityRecognitionConfigProperty = EntityRecognitionConfigProperty.builder() .entityTypes(List.of(EntityTypesListItemProperty.builder() .type("type") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFlywheel.EntityRecognitionConfigProperty
static final class
An implementation forCfnFlywheel.EntityRecognitionConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEntityTypes
Up to 25 entity types that the model is trained to recognize. -
builder
-