Class CfnDocumentClassifierPropsMixin
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.comprehend.CfnDocumentClassifierPropsMixin
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable,software.constructs.IMixin
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.461Z")
@Stability(Stable)
public class CfnDocumentClassifierPropsMixin
extends Mixin
implements software.constructs.IMixin
This resource creates and trains a document classifier to categorize documents.
You provide a set of training documents that are labeled with the categories that you want to identify. After the classifier is trained you can use it to categorize a set of labeled documents into the categories. For more information, see Document Classification in the Comprehend Developer Guide.
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.comprehend.*;
import software.amazon.awscdk.*;
IMergeStrategy mergeStrategy;
CfnDocumentClassifierPropsMixin cfnDocumentClassifierPropsMixin = CfnDocumentClassifierPropsMixin.Builder.create(CfnDocumentClassifierMixinProps.builder()
.dataAccessRoleArn("dataAccessRoleArn")
.documentClassifierName("documentClassifierName")
.inputDataConfig(DocumentClassifierInputDataConfigProperty.builder()
.augmentedManifests(List.of(AugmentedManifestsListItemProperty.builder()
.attributeNames(List.of("attributeNames"))
.s3Uri("s3Uri")
.split("split")
.build()))
.dataFormat("dataFormat")
.documentReaderConfig(DocumentReaderConfigProperty.builder()
.documentReadAction("documentReadAction")
.documentReadMode("documentReadMode")
.featureTypes(List.of("featureTypes"))
.build())
.documents(DocumentClassifierDocumentsProperty.builder()
.s3Uri("s3Uri")
.testS3Uri("testS3Uri")
.build())
.documentType("documentType")
.labelDelimiter("labelDelimiter")
.s3Uri("s3Uri")
.testS3Uri("testS3Uri")
.build())
.languageCode("languageCode")
.mode("mode")
.modelKmsKeyId("modelKmsKeyId")
.modelPolicy("modelPolicy")
.outputDataConfig(DocumentClassifierOutputDataConfigProperty.builder()
.kmsKeyId("kmsKeyId")
.s3Uri("s3Uri")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.versionName("versionName")
.volumeKmsKeyId("volumeKmsKeyId")
.vpcConfig(VpcConfigProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnets(List.of("subnets"))
.build())
.build())
.strategy(mergeStrategy)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceAn augmented manifest file that provides training data for your custom model.static final classA fluent builder forCfnDocumentClassifierPropsMixin.static interfaceThe location of the training documents.static interfaceThe input properties for training a document classifier.static interfaceProvide the location for output data from a custom classifier job.static interfaceProvides configuration parameters to override the default actions for extracting text from PDF documents and image files.static interfaceConfiguration parameters for an optional private Virtual Private Cloud (VPC) containing the resources you are using for the job.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IMixin
software.constructs.IMixin.Jsii$Default, software.constructs.IMixin.Jsii$Proxy -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionCreate a mixin to apply properties toAWS::Comprehend::DocumentClassifier.CfnDocumentClassifierPropsMixin(CfnDocumentClassifierMixinProps props, CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::Comprehend::DocumentClassifier.protectedCfnDocumentClassifierPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnDocumentClassifierPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionvoidapplyTo(software.constructs.IConstruct construct) Apply the mixin properties to the construct.protected CfnDocumentClassifierMixinPropsgetProps()protected IMergeStrategysupports(software.constructs.IConstruct construct) Check if this mixin supports the given construct.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_PROPERTY_KEYS
-
-
Constructor Details
-
CfnDocumentClassifierPropsMixin
protected CfnDocumentClassifierPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
CfnDocumentClassifierPropsMixin
protected CfnDocumentClassifierPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnDocumentClassifierPropsMixin
@Stability(Stable) public CfnDocumentClassifierPropsMixin(@NotNull CfnDocumentClassifierMixinProps props, @Nullable CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::Comprehend::DocumentClassifier.- Parameters:
props- L1 properties to apply. This parameter is required.options- Mixin options.
-
CfnDocumentClassifierPropsMixin
@Stability(Stable) public CfnDocumentClassifierPropsMixin(@NotNull CfnDocumentClassifierMixinProps props) Create a mixin to apply properties toAWS::Comprehend::DocumentClassifier.- Parameters:
props- L1 properties to apply. This parameter is required.
-
-
Method Details
-
applyTo
@Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct) Apply the mixin properties to the construct. -
supports
@Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct) Check if this mixin supports the given construct. -
getProps
-
getStrategy
-