interface CfnAdapterMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Textract.CfnAdapterMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstextract#CfnAdapterMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.textract.CfnAdapterMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_textract.CfnAdapterMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_textract » CfnAdapterMixinProps |
Properties for CfnAdapterPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-textract-adapter.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_textract as textract } from '@aws-cdk/cfn-property-mixins';
const cfnAdapterMixinProps: textract.CfnAdapterMixinProps = {
adapterName: 'adapterName',
autoUpdate: 'autoUpdate',
description: 'description',
featureTypes: ['featureTypes'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| adapter | string | The name to be assigned to the adapter being created. |
| auto | string | Controls whether or not the adapter should automatically update. |
| description? | string | The description to be assigned to the adapter being created. |
| feature | string[] | The type of feature that the adapter is being trained on. |
| tags? | Cfn[] | A list of tags to be added to the adapter. |
adapterName?
Type:
string
(optional)
The name to be assigned to the adapter being created.
autoUpdate?
Type:
string
(optional)
Controls whether or not the adapter should automatically update.
description?
Type:
string
(optional)
The description to be assigned to the adapter being created.
featureTypes?
Type:
string[]
(optional)
The type of feature that the adapter is being trained on.
Currently, supported feature types are: QUERIES
tags?
Type:
Cfn[]
(optional)
A list of tags to be added to the adapter.

.NET
Go
Java
Python
TypeScript