Interface CfnAdapterMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAdapterMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:34.990Z")
@Stability(Stable)
public interface CfnAdapterMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAdapterPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.textract.*;
CfnAdapterMixinProps cfnAdapterMixinProps = CfnAdapterMixinProps.builder()
.adapterName("adapterName")
.autoUpdate("autoUpdate")
.description("description")
.featureTypes(List.of("featureTypes"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAdapterMixinPropsstatic final classAn implementation forCfnAdapterMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnAdapterMixinProps.Builderbuilder()default StringThe 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:
-
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:
-
getFeatureTypes
The type of feature that the adapter is being trained on.Currently, supported feature types are: QUERIES
- See Also:
-
getTags
A list of tags to be added to the adapter.- See Also:
-
builder
- Returns:
- a
CfnAdapterMixinProps.BuilderofCfnAdapterMixinProps
-