interface EntityRecognitionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Comprehend.Mixins.CfnFlywheelPropsMixin.EntityRecognitionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscomprehend/mixins#CfnFlywheelPropsMixin_EntityRecognitionConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.comprehend.mixins.CfnFlywheelPropsMixin.EntityRecognitionConfigProperty |
Python | aws_cdk.mixins_preview.aws_comprehend.mixins.CfnFlywheelPropsMixin.EntityRecognitionConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_comprehend » mixins » CfnFlywheelPropsMixin » 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 { mixins as comprehend_mixins } from '@aws-cdk/mixins-preview/aws-comprehend';
const entityRecognitionConfigProperty: comprehend_mixins.CfnFlywheelPropsMixin.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
Go
Java
Python
TypeScript