interface CfnAdapterProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Textract.CfnAdapterProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awstextract#CfnAdapterProps |
Java | software.amazon.awscdk.services.textract.CfnAdapterProps |
Python | aws_cdk.aws_textract.CfnAdapterProps |
TypeScript | aws-cdk-lib » aws_textract » CfnAdapterProps |
Properties for defining a CfnAdapter.
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-lib';
const cfnAdapterProps: textract.CfnAdapterProps = {
adapterName: 'adapterName',
featureTypes: ['featureTypes'],
// the properties below are optional
autoUpdate: 'autoUpdate',
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| adapter | string | The name to be assigned to the adapter being created. |
| feature | string[] | The type of feature that the adapter is being trained on. |
| auto | string | Controls whether or not the adapter should automatically update. |
| description? | string | The description to be assigned to the adapter being created. |
| tags? | Cfn[] | A list of tags to be added to the adapter. |
adapterName
Type:
string
The name to be assigned to the adapter being created.
featureTypes
Type:
string[]
The type of feature that the adapter is being trained on.
Currently, supported feature types are: QUERIES
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.
tags?
Type:
Cfn[]
(optional)
A list of tags to be added to the adapter.

.NET
Go
Java
Python
TypeScript