interface CfnFlywheelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Comprehend.Mixins.CfnFlywheelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscomprehend/mixins#CfnFlywheelMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.comprehend.mixins.CfnFlywheelMixinProps |
Python | aws_cdk.mixins_preview.aws_comprehend.mixins.CfnFlywheelMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_comprehend » mixins » CfnFlywheelMixinProps |
Properties for CfnFlywheelPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-comprehend-flywheel.html
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 cfnFlywheelMixinProps: comprehend_mixins.CfnFlywheelMixinProps = {
activeModelArn: 'activeModelArn',
dataAccessRoleArn: 'dataAccessRoleArn',
dataLakeS3Uri: 'dataLakeS3Uri',
dataSecurityConfig: {
dataLakeKmsKeyId: 'dataLakeKmsKeyId',
modelKmsKeyId: 'modelKmsKeyId',
volumeKmsKeyId: 'volumeKmsKeyId',
vpcConfig: {
securityGroupIds: ['securityGroupIds'],
subnets: ['subnets'],
},
},
flywheelName: 'flywheelName',
modelType: 'modelType',
tags: [{
key: 'key',
value: 'value',
}],
taskConfig: {
documentClassificationConfig: {
labels: ['labels'],
mode: 'mode',
},
entityRecognitionConfig: {
entityTypes: [{
type: 'type',
}],
},
languageCode: 'languageCode',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| active | string | The Amazon Resource Number (ARN) of the active model version. |
| data | string | The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend permission to access the flywheel data. |
| data | string | Amazon S3 URI of the data lake location. |
| data | IResolvable | Data | Data security configuration. |
| flywheel | string | Name for the flywheel. |
| model | string | Model type of the flywheel's model. |
| tags? | Cfn[] | Tags associated with the endpoint being created. |
| task | IResolvable | Task | Configuration about the model associated with a flywheel. |
activeModelArn?
Type:
string
(optional)
The Amazon Resource Number (ARN) of the active model version.
dataAccessRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend permission to access the flywheel data.
dataLakeS3Uri?
Type:
string
(optional)
Amazon S3 URI of the data lake location.
dataSecurityConfig?
Type:
IResolvable | Data
(optional)
Data security configuration.
flywheelName?
Type:
string
(optional)
Name for the flywheel.
modelType?
Type:
string
(optional)
Model type of the flywheel's model.
tags?
Type:
Cfn[]
(optional)
Tags associated with the endpoint being created.
A tag is a key-value pair that adds metadata to the endpoint. For example, a tag with "Sales" as the key might be added to an endpoint to indicate its use by the sales department.
taskConfig?
Type:
IResolvable | Task
(optional)
Configuration about the model associated with a flywheel.

.NET
Go
Java
Python
TypeScript