interface EntityRecognitionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Comprehend.CfnFlywheel.EntityRecognitionConfigProperty |
Java | software.amazon.awscdk.services.comprehend.CfnFlywheel.EntityRecognitionConfigProperty |
Python | aws_cdk.aws_comprehend.CfnFlywheel.EntityRecognitionConfigProperty |
TypeScript | @aws-cdk/aws-comprehend » CfnFlywheel » EntityRecognitionConfigProperty |
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 * as comprehend from '@aws-cdk/aws-comprehend';
const entityRecognitionConfigProperty: comprehend.CfnFlywheel.EntityRecognitionConfigProperty = {
entityTypes: [{
type: 'type',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| entity | IResolvable | IResolvable | Entity[] | Up to 25 entity types that the model is trained to recognize. |
entityTypes?
Type:
IResolvable | IResolvable | Entity[]
(optional)
Up to 25 entity types that the model is trained to recognize.

.NET
Java
Python
TypeScript