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