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();
 

See Also: