CfnAdapterMixinProps
- class aws_cdk.cfn_property_mixins.aws_textract.CfnAdapterMixinProps(*, adapter_name=None, auto_update=None, description=None, feature_types=None, tags=None)
Bases:
objectProperties for CfnAdapterPropsMixin.
- Parameters:
adapter_name (
Optional[str]) – The name to be assigned to the adapter being created.auto_update (
Optional[str]) – Controls whether or not the adapter should automatically update.description (
Optional[str]) – The description to be assigned to the adapter being created.feature_types (
Optional[Sequence[str]]) – The type of feature that the adapter is being trained on. Currently, supported feature types are: QUERIEStags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A list of tags to be added to the adapter.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-textract-adapter.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_textract as textract cfn_adapter_mixin_props = textract.CfnAdapterMixinProps( adapter_name="adapterName", auto_update="autoUpdate", description="description", feature_types=["featureTypes"], tags=[CfnTag( key="key", value="value" )] )
Attributes
- adapter_name
The name to be assigned to the adapter being created.
- auto_update
Controls whether or not the adapter should automatically update.
- description
The description to be assigned to the adapter being created.
- feature_types
The type of feature that the adapter is being trained on.
Currently, supported feature types are: QUERIES
- tags
A list of tags to be added to the adapter.