interface TaskConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Comprehend.Mixins.CfnFlywheelPropsMixin.TaskConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscomprehend/mixins#CfnFlywheelPropsMixin_TaskConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.comprehend.mixins.CfnFlywheelPropsMixin.TaskConfigProperty |
Python | aws_cdk.mixins_preview.aws_comprehend.mixins.CfnFlywheelPropsMixin.TaskConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_comprehend » mixins » CfnFlywheelPropsMixin » TaskConfigProperty |
Configuration about the model associated with a flywheel.
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 taskConfigProperty: comprehend_mixins.CfnFlywheelPropsMixin.TaskConfigProperty = {
documentClassificationConfig: {
labels: ['labels'],
mode: 'mode',
},
entityRecognitionConfig: {
entityTypes: [{
type: 'type',
}],
},
languageCode: 'languageCode',
};
Properties
| Name | Type | Description |
|---|---|---|
| document | IResolvable | Document | Configuration required for a document classification model. |
| entity | IResolvable | Entity | Configuration required for an entity recognition model. |
| language | string | Language code for the language that the model supports. |
documentClassificationConfig?
Type:
IResolvable | Document
(optional)
Configuration required for a document classification model.
entityRecognitionConfig?
Type:
IResolvable | Entity
(optional)
Configuration required for an entity recognition model.
languageCode?
Type:
string
(optional)
Language code for the language that the model supports.

.NET
Go
Java
Python
TypeScript