Interface CfnAdapterProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAdapterProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:20.604Z")
@Stability(Stable)
public interface CfnAdapterProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAdapter.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.textract.*;
CfnAdapterProps cfnAdapterProps = CfnAdapterProps.builder()
.adapterName("adapterName")
.featureTypes(List.of("featureTypes"))
// the properties below are optional
.autoUpdate("autoUpdate")
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAdapterPropsstatic final classAn implementation forCfnAdapterProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAdapterProps.Builderbuilder()The name to be assigned to the adapter being created.default StringControls whether or not the adapter should automatically update.default StringThe description to be assigned to the adapter being created.The type of feature that the adapter is being trained on.getTags()A list of tags to be added to the adapter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdapterName
The name to be assigned to the adapter being created.- See Also:
-
getFeatureTypes
The type of feature that the adapter is being trained on.Currently, supported feature types are: QUERIES
- See Also:
-
getAutoUpdate
Controls whether or not the adapter should automatically update.- See Also:
-
getDescription
The description to be assigned to the adapter being created.- See Also:
-
getTags
A list of tags to be added to the adapter.- See Also:
-
builder
- Returns:
- a
CfnAdapterProps.BuilderofCfnAdapterProps
-