We recommend new projects start with resources from the AWS provider.
aws-native.comprehend.DocumentClassifier
Explore with Pulumi AI
We recommend new projects start with resources from the AWS provider.
Document Classifier enables training document classifier models.
Create DocumentClassifier Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DocumentClassifier(name: string, args: DocumentClassifierArgs, opts?: CustomResourceOptions);@overload
def DocumentClassifier(resource_name: str,
                       args: DocumentClassifierArgs,
                       opts: Optional[ResourceOptions] = None)
@overload
def DocumentClassifier(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       data_access_role_arn: Optional[str] = None,
                       input_data_config: Optional[DocumentClassifierInputDataConfigArgs] = None,
                       language_code: Optional[DocumentClassifierLanguageCode] = None,
                       document_classifier_name: Optional[str] = None,
                       mode: Optional[DocumentClassifierMode] = None,
                       model_kms_key_id: Optional[str] = None,
                       model_policy: Optional[str] = None,
                       output_data_config: Optional[DocumentClassifierOutputDataConfigArgs] = None,
                       tags: Optional[Sequence[_root_inputs.TagArgs]] = None,
                       version_name: Optional[str] = None,
                       volume_kms_key_id: Optional[str] = None,
                       vpc_config: Optional[DocumentClassifierVpcConfigArgs] = None)func NewDocumentClassifier(ctx *Context, name string, args DocumentClassifierArgs, opts ...ResourceOption) (*DocumentClassifier, error)public DocumentClassifier(string name, DocumentClassifierArgs args, CustomResourceOptions? opts = null)
public DocumentClassifier(String name, DocumentClassifierArgs args)
public DocumentClassifier(String name, DocumentClassifierArgs args, CustomResourceOptions options)
type: aws-native:comprehend:DocumentClassifier
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DocumentClassifierArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DocumentClassifierArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DocumentClassifierArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DocumentClassifierArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DocumentClassifierArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
DocumentClassifier Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DocumentClassifier resource accepts the following input properties:
- DataAccess stringRole Arn 
- The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend read access to your input data.
- InputData Pulumi.Config Aws Native. Comprehend. Inputs. Document Classifier Input Data Config 
- Specifies the format and location of the input data for the job.
- LanguageCode Pulumi.Aws Native. Comprehend. Document Classifier Language Code 
- The language of the input documents. You can specify any of the languages supported by Amazon Comprehend. All documents must be in the same language.
- DocumentClassifier stringName 
- The name of the document classifier.
- Mode
Pulumi.Aws Native. Comprehend. Document Classifier Mode 
- Indicates the mode in which the classifier will be trained. The classifier can be trained in multi-class (single-label) mode or multi-label mode. Multi-class mode identifies a single class label for each document and multi-label mode identifies one or more class labels for each document. Multiple labels for an individual document are separated by a delimiter. The default delimiter between labels is a pipe (|).
- ModelKms stringKey Id 
- ID for the AWS KMS key that Amazon Comprehend uses to encrypt trained custom models. The ModelKmsKeyId can be either of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
 
- KMS Key ID: 
- ModelPolicy string
- The resource-based policy to attach to your custom document classifier model. You can use this policy to allow another AWS account to import your custom model. - Provide your policy as a JSON body that you enter as a UTF-8 encoded string without line breaks. To provide valid JSON, enclose the attribute names and values in double quotes. If the JSON body is also enclosed in double quotes, then you must escape the double quotes that are inside the policy: - "{\"attribute\": \"value\", \"attribute\": [\"value\"]}"- To avoid escaping quotes, you can use single quotes to enclose the policy and double quotes to enclose the JSON names and values: - '{"attribute": "value", "attribute": ["value"]}'
- OutputData Pulumi.Config Aws Native. Comprehend. Inputs. Document Classifier Output Data Config 
- Provides output results configuration parameters for custom classifier jobs.
- 
List<Pulumi.Aws Native. Inputs. Tag> 
- Tags to associate with the document classifier. A tag is a key-value pair that adds as a metadata to a resource used by Amazon Comprehend. For example, a tag with "Sales" as the key might be added to a resource to indicate its use by the sales department.
- VersionName string
- The version name given to the newly created classifier. Version names can have a maximum of 256 characters. Alphanumeric characters, hyphens (-) and underscores (_) are allowed. The version name must be unique among all models with the same classifier name in the AWS account / AWS Region .
- VolumeKms stringKey Id 
- ID for the AWS Key Management Service (KMS) key that Amazon Comprehend uses to encrypt data on the storage volume attached to the ML compute instance(s) that process the analysis job. The VolumeKmsKeyId can be either of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
 
- KMS Key ID: 
- VpcConfig Pulumi.Aws Native. Comprehend. Inputs. Document Classifier Vpc Config 
- Configuration parameters for a private Virtual Private Cloud (VPC) containing the resources you are using for your custom classifier. For more information, see Amazon VPC .
- DataAccess stringRole Arn 
- The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend read access to your input data.
- InputData DocumentConfig Classifier Input Data Config Args 
- Specifies the format and location of the input data for the job.
- LanguageCode DocumentClassifier Language Code 
- The language of the input documents. You can specify any of the languages supported by Amazon Comprehend. All documents must be in the same language.
- DocumentClassifier stringName 
- The name of the document classifier.
- Mode
DocumentClassifier Mode 
- Indicates the mode in which the classifier will be trained. The classifier can be trained in multi-class (single-label) mode or multi-label mode. Multi-class mode identifies a single class label for each document and multi-label mode identifies one or more class labels for each document. Multiple labels for an individual document are separated by a delimiter. The default delimiter between labels is a pipe (|).
- ModelKms stringKey Id 
- ID for the AWS KMS key that Amazon Comprehend uses to encrypt trained custom models. The ModelKmsKeyId can be either of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
 
- KMS Key ID: 
- ModelPolicy string
- The resource-based policy to attach to your custom document classifier model. You can use this policy to allow another AWS account to import your custom model. - Provide your policy as a JSON body that you enter as a UTF-8 encoded string without line breaks. To provide valid JSON, enclose the attribute names and values in double quotes. If the JSON body is also enclosed in double quotes, then you must escape the double quotes that are inside the policy: - "{\"attribute\": \"value\", \"attribute\": [\"value\"]}"- To avoid escaping quotes, you can use single quotes to enclose the policy and double quotes to enclose the JSON names and values: - '{"attribute": "value", "attribute": ["value"]}'
- OutputData DocumentConfig Classifier Output Data Config Args 
- Provides output results configuration parameters for custom classifier jobs.
- 
TagArgs 
- Tags to associate with the document classifier. A tag is a key-value pair that adds as a metadata to a resource used by Amazon Comprehend. For example, a tag with "Sales" as the key might be added to a resource to indicate its use by the sales department.
- VersionName string
- The version name given to the newly created classifier. Version names can have a maximum of 256 characters. Alphanumeric characters, hyphens (-) and underscores (_) are allowed. The version name must be unique among all models with the same classifier name in the AWS account / AWS Region .
- VolumeKms stringKey Id 
- ID for the AWS Key Management Service (KMS) key that Amazon Comprehend uses to encrypt data on the storage volume attached to the ML compute instance(s) that process the analysis job. The VolumeKmsKeyId can be either of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
 
- KMS Key ID: 
- VpcConfig DocumentClassifier Vpc Config Args 
- Configuration parameters for a private Virtual Private Cloud (VPC) containing the resources you are using for your custom classifier. For more information, see Amazon VPC .
- dataAccess StringRole Arn 
- The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend read access to your input data.
- inputData DocumentConfig Classifier Input Data Config 
- Specifies the format and location of the input data for the job.
- languageCode DocumentClassifier Language Code 
- The language of the input documents. You can specify any of the languages supported by Amazon Comprehend. All documents must be in the same language.
- documentClassifier StringName 
- The name of the document classifier.
- mode
DocumentClassifier Mode 
- Indicates the mode in which the classifier will be trained. The classifier can be trained in multi-class (single-label) mode or multi-label mode. Multi-class mode identifies a single class label for each document and multi-label mode identifies one or more class labels for each document. Multiple labels for an individual document are separated by a delimiter. The default delimiter between labels is a pipe (|).
- modelKms StringKey Id 
- ID for the AWS KMS key that Amazon Comprehend uses to encrypt trained custom models. The ModelKmsKeyId can be either of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
 
- KMS Key ID: 
- modelPolicy String
- The resource-based policy to attach to your custom document classifier model. You can use this policy to allow another AWS account to import your custom model. - Provide your policy as a JSON body that you enter as a UTF-8 encoded string without line breaks. To provide valid JSON, enclose the attribute names and values in double quotes. If the JSON body is also enclosed in double quotes, then you must escape the double quotes that are inside the policy: - "{\"attribute\": \"value\", \"attribute\": [\"value\"]}"- To avoid escaping quotes, you can use single quotes to enclose the policy and double quotes to enclose the JSON names and values: - '{"attribute": "value", "attribute": ["value"]}'
- outputData DocumentConfig Classifier Output Data Config 
- Provides output results configuration parameters for custom classifier jobs.
- List<Tag>
- Tags to associate with the document classifier. A tag is a key-value pair that adds as a metadata to a resource used by Amazon Comprehend. For example, a tag with "Sales" as the key might be added to a resource to indicate its use by the sales department.
- versionName String
- The version name given to the newly created classifier. Version names can have a maximum of 256 characters. Alphanumeric characters, hyphens (-) and underscores (_) are allowed. The version name must be unique among all models with the same classifier name in the AWS account / AWS Region .
- volumeKms StringKey Id 
- ID for the AWS Key Management Service (KMS) key that Amazon Comprehend uses to encrypt data on the storage volume attached to the ML compute instance(s) that process the analysis job. The VolumeKmsKeyId can be either of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
 
- KMS Key ID: 
- vpcConfig DocumentClassifier Vpc Config 
- Configuration parameters for a private Virtual Private Cloud (VPC) containing the resources you are using for your custom classifier. For more information, see Amazon VPC .
- dataAccess stringRole Arn 
- The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend read access to your input data.
- inputData DocumentConfig Classifier Input Data Config 
- Specifies the format and location of the input data for the job.
- languageCode DocumentClassifier Language Code 
- The language of the input documents. You can specify any of the languages supported by Amazon Comprehend. All documents must be in the same language.
- documentClassifier stringName 
- The name of the document classifier.
- mode
DocumentClassifier Mode 
- Indicates the mode in which the classifier will be trained. The classifier can be trained in multi-class (single-label) mode or multi-label mode. Multi-class mode identifies a single class label for each document and multi-label mode identifies one or more class labels for each document. Multiple labels for an individual document are separated by a delimiter. The default delimiter between labels is a pipe (|).
- modelKms stringKey Id 
- ID for the AWS KMS key that Amazon Comprehend uses to encrypt trained custom models. The ModelKmsKeyId can be either of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
 
- KMS Key ID: 
- modelPolicy string
- The resource-based policy to attach to your custom document classifier model. You can use this policy to allow another AWS account to import your custom model. - Provide your policy as a JSON body that you enter as a UTF-8 encoded string without line breaks. To provide valid JSON, enclose the attribute names and values in double quotes. If the JSON body is also enclosed in double quotes, then you must escape the double quotes that are inside the policy: - "{\"attribute\": \"value\", \"attribute\": [\"value\"]}"- To avoid escaping quotes, you can use single quotes to enclose the policy and double quotes to enclose the JSON names and values: - '{"attribute": "value", "attribute": ["value"]}'
- outputData DocumentConfig Classifier Output Data Config 
- Provides output results configuration parameters for custom classifier jobs.
- Tag[]
- Tags to associate with the document classifier. A tag is a key-value pair that adds as a metadata to a resource used by Amazon Comprehend. For example, a tag with "Sales" as the key might be added to a resource to indicate its use by the sales department.
- versionName string
- The version name given to the newly created classifier. Version names can have a maximum of 256 characters. Alphanumeric characters, hyphens (-) and underscores (_) are allowed. The version name must be unique among all models with the same classifier name in the AWS account / AWS Region .
- volumeKms stringKey Id 
- ID for the AWS Key Management Service (KMS) key that Amazon Comprehend uses to encrypt data on the storage volume attached to the ML compute instance(s) that process the analysis job. The VolumeKmsKeyId can be either of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
 
- KMS Key ID: 
- vpcConfig DocumentClassifier Vpc Config 
- Configuration parameters for a private Virtual Private Cloud (VPC) containing the resources you are using for your custom classifier. For more information, see Amazon VPC .
- data_access_ strrole_ arn 
- The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend read access to your input data.
- input_data_ Documentconfig Classifier Input Data Config Args 
- Specifies the format and location of the input data for the job.
- language_code DocumentClassifier Language Code 
- The language of the input documents. You can specify any of the languages supported by Amazon Comprehend. All documents must be in the same language.
- document_classifier_ strname 
- The name of the document classifier.
- mode
DocumentClassifier Mode 
- Indicates the mode in which the classifier will be trained. The classifier can be trained in multi-class (single-label) mode or multi-label mode. Multi-class mode identifies a single class label for each document and multi-label mode identifies one or more class labels for each document. Multiple labels for an individual document are separated by a delimiter. The default delimiter between labels is a pipe (|).
- model_kms_ strkey_ id 
- ID for the AWS KMS key that Amazon Comprehend uses to encrypt trained custom models. The ModelKmsKeyId can be either of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
 
- KMS Key ID: 
- model_policy str
- The resource-based policy to attach to your custom document classifier model. You can use this policy to allow another AWS account to import your custom model. - Provide your policy as a JSON body that you enter as a UTF-8 encoded string without line breaks. To provide valid JSON, enclose the attribute names and values in double quotes. If the JSON body is also enclosed in double quotes, then you must escape the double quotes that are inside the policy: - "{\"attribute\": \"value\", \"attribute\": [\"value\"]}"- To avoid escaping quotes, you can use single quotes to enclose the policy and double quotes to enclose the JSON names and values: - '{"attribute": "value", "attribute": ["value"]}'
- output_data_ Documentconfig Classifier Output Data Config Args 
- Provides output results configuration parameters for custom classifier jobs.
- 
Sequence[TagArgs] 
- Tags to associate with the document classifier. A tag is a key-value pair that adds as a metadata to a resource used by Amazon Comprehend. For example, a tag with "Sales" as the key might be added to a resource to indicate its use by the sales department.
- version_name str
- The version name given to the newly created classifier. Version names can have a maximum of 256 characters. Alphanumeric characters, hyphens (-) and underscores (_) are allowed. The version name must be unique among all models with the same classifier name in the AWS account / AWS Region .
- volume_kms_ strkey_ id 
- ID for the AWS Key Management Service (KMS) key that Amazon Comprehend uses to encrypt data on the storage volume attached to the ML compute instance(s) that process the analysis job. The VolumeKmsKeyId can be either of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
 
- KMS Key ID: 
- vpc_config DocumentClassifier Vpc Config Args 
- Configuration parameters for a private Virtual Private Cloud (VPC) containing the resources you are using for your custom classifier. For more information, see Amazon VPC .
- dataAccess StringRole Arn 
- The Amazon Resource Name (ARN) of the IAM role that grants Amazon Comprehend read access to your input data.
- inputData Property MapConfig 
- Specifies the format and location of the input data for the job.
- languageCode "en" | "es" | "fr" | "it" | "de" | "pt"
- The language of the input documents. You can specify any of the languages supported by Amazon Comprehend. All documents must be in the same language.
- documentClassifier StringName 
- The name of the document classifier.
- mode "MULTI_CLASS" | "MULTI_LABEL"
- Indicates the mode in which the classifier will be trained. The classifier can be trained in multi-class (single-label) mode or multi-label mode. Multi-class mode identifies a single class label for each document and multi-label mode identifies one or more class labels for each document. Multiple labels for an individual document are separated by a delimiter. The default delimiter between labels is a pipe (|).
- modelKms StringKey Id 
- ID for the AWS KMS key that Amazon Comprehend uses to encrypt trained custom models. The ModelKmsKeyId can be either of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
 
- KMS Key ID: 
- modelPolicy String
- The resource-based policy to attach to your custom document classifier model. You can use this policy to allow another AWS account to import your custom model. - Provide your policy as a JSON body that you enter as a UTF-8 encoded string without line breaks. To provide valid JSON, enclose the attribute names and values in double quotes. If the JSON body is also enclosed in double quotes, then you must escape the double quotes that are inside the policy: - "{\"attribute\": \"value\", \"attribute\": [\"value\"]}"- To avoid escaping quotes, you can use single quotes to enclose the policy and double quotes to enclose the JSON names and values: - '{"attribute": "value", "attribute": ["value"]}'
- outputData Property MapConfig 
- Provides output results configuration parameters for custom classifier jobs.
- List<Property Map>
- Tags to associate with the document classifier. A tag is a key-value pair that adds as a metadata to a resource used by Amazon Comprehend. For example, a tag with "Sales" as the key might be added to a resource to indicate its use by the sales department.
- versionName String
- The version name given to the newly created classifier. Version names can have a maximum of 256 characters. Alphanumeric characters, hyphens (-) and underscores (_) are allowed. The version name must be unique among all models with the same classifier name in the AWS account / AWS Region .
- volumeKms StringKey Id 
- ID for the AWS Key Management Service (KMS) key that Amazon Comprehend uses to encrypt data on the storage volume attached to the ML compute instance(s) that process the analysis job. The VolumeKmsKeyId can be either of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
 
- KMS Key ID: 
- vpcConfig Property Map
- Configuration parameters for a private Virtual Private Cloud (VPC) containing the resources you are using for your custom classifier. For more information, see Amazon VPC .
Outputs
All input properties are implicitly available as output properties. Additionally, the DocumentClassifier resource produces the following output properties:
Supporting Types
DocumentClassifierAugmentedManifestsListItem, DocumentClassifierAugmentedManifestsListItemArgs            
- AttributeNames List<string>
- The JSON attribute that contains the annotations for your training documents. The number of attribute names that you specify depends on whether your augmented manifest file is the output of a single labeling job or a chained labeling job. - If your file is the output of a single labeling job, specify the LabelAttributeName key that was used when the job was created in Ground Truth. - If your file is the output of a chained labeling job, specify the LabelAttributeName key for one or more jobs in the chain. Each LabelAttributeName key provides the annotations from an individual job. 
- S3Uri string
- The Amazon S3 location of the augmented manifest file.
- Split
Pulumi.Aws Native. Comprehend. Document Classifier Augmented Manifests List Item Split 
- The purpose of the data you've provided in the augmented manifest. You can either train or test this data. If you don't specify, the default is train. - TRAIN - all of the documents in the manifest will be used for training. If no test documents are provided, Amazon Comprehend will automatically reserve a portion of the training documents for testing. - TEST - all of the documents in the manifest will be used for testing. 
- AttributeNames []string
- The JSON attribute that contains the annotations for your training documents. The number of attribute names that you specify depends on whether your augmented manifest file is the output of a single labeling job or a chained labeling job. - If your file is the output of a single labeling job, specify the LabelAttributeName key that was used when the job was created in Ground Truth. - If your file is the output of a chained labeling job, specify the LabelAttributeName key for one or more jobs in the chain. Each LabelAttributeName key provides the annotations from an individual job. 
- S3Uri string
- The Amazon S3 location of the augmented manifest file.
- Split
DocumentClassifier Augmented Manifests List Item Split 
- The purpose of the data you've provided in the augmented manifest. You can either train or test this data. If you don't specify, the default is train. - TRAIN - all of the documents in the manifest will be used for training. If no test documents are provided, Amazon Comprehend will automatically reserve a portion of the training documents for testing. - TEST - all of the documents in the manifest will be used for testing. 
- attributeNames List<String>
- The JSON attribute that contains the annotations for your training documents. The number of attribute names that you specify depends on whether your augmented manifest file is the output of a single labeling job or a chained labeling job. - If your file is the output of a single labeling job, specify the LabelAttributeName key that was used when the job was created in Ground Truth. - If your file is the output of a chained labeling job, specify the LabelAttributeName key for one or more jobs in the chain. Each LabelAttributeName key provides the annotations from an individual job. 
- s3Uri String
- The Amazon S3 location of the augmented manifest file.
- split
DocumentClassifier Augmented Manifests List Item Split 
- The purpose of the data you've provided in the augmented manifest. You can either train or test this data. If you don't specify, the default is train. - TRAIN - all of the documents in the manifest will be used for training. If no test documents are provided, Amazon Comprehend will automatically reserve a portion of the training documents for testing. - TEST - all of the documents in the manifest will be used for testing. 
- attributeNames string[]
- The JSON attribute that contains the annotations for your training documents. The number of attribute names that you specify depends on whether your augmented manifest file is the output of a single labeling job or a chained labeling job. - If your file is the output of a single labeling job, specify the LabelAttributeName key that was used when the job was created in Ground Truth. - If your file is the output of a chained labeling job, specify the LabelAttributeName key for one or more jobs in the chain. Each LabelAttributeName key provides the annotations from an individual job. 
- s3Uri string
- The Amazon S3 location of the augmented manifest file.
- split
DocumentClassifier Augmented Manifests List Item Split 
- The purpose of the data you've provided in the augmented manifest. You can either train or test this data. If you don't specify, the default is train. - TRAIN - all of the documents in the manifest will be used for training. If no test documents are provided, Amazon Comprehend will automatically reserve a portion of the training documents for testing. - TEST - all of the documents in the manifest will be used for testing. 
- attribute_names Sequence[str]
- The JSON attribute that contains the annotations for your training documents. The number of attribute names that you specify depends on whether your augmented manifest file is the output of a single labeling job or a chained labeling job. - If your file is the output of a single labeling job, specify the LabelAttributeName key that was used when the job was created in Ground Truth. - If your file is the output of a chained labeling job, specify the LabelAttributeName key for one or more jobs in the chain. Each LabelAttributeName key provides the annotations from an individual job. 
- s3_uri str
- The Amazon S3 location of the augmented manifest file.
- split
DocumentClassifier Augmented Manifests List Item Split 
- The purpose of the data you've provided in the augmented manifest. You can either train or test this data. If you don't specify, the default is train. - TRAIN - all of the documents in the manifest will be used for training. If no test documents are provided, Amazon Comprehend will automatically reserve a portion of the training documents for testing. - TEST - all of the documents in the manifest will be used for testing. 
- attributeNames List<String>
- The JSON attribute that contains the annotations for your training documents. The number of attribute names that you specify depends on whether your augmented manifest file is the output of a single labeling job or a chained labeling job. - If your file is the output of a single labeling job, specify the LabelAttributeName key that was used when the job was created in Ground Truth. - If your file is the output of a chained labeling job, specify the LabelAttributeName key for one or more jobs in the chain. Each LabelAttributeName key provides the annotations from an individual job. 
- s3Uri String
- The Amazon S3 location of the augmented manifest file.
- split "TRAIN" | "TEST"
- The purpose of the data you've provided in the augmented manifest. You can either train or test this data. If you don't specify, the default is train. - TRAIN - all of the documents in the manifest will be used for training. If no test documents are provided, Amazon Comprehend will automatically reserve a portion of the training documents for testing. - TEST - all of the documents in the manifest will be used for testing. 
DocumentClassifierAugmentedManifestsListItemSplit, DocumentClassifierAugmentedManifestsListItemSplitArgs              
- Train
- TRAIN
- Test
- TEST
- DocumentClassifier Augmented Manifests List Item Split Train 
- TRAIN
- DocumentClassifier Augmented Manifests List Item Split Test 
- TEST
- Train
- TRAIN
- Test
- TEST
- Train
- TRAIN
- Test
- TEST
- TRAIN
- TRAIN
- TEST
- TEST
- "TRAIN"
- TRAIN
- "TEST"
- TEST
DocumentClassifierDocumentReaderConfig, DocumentClassifierDocumentReaderConfigArgs          
- DocumentRead Pulumi.Action Aws Native. Comprehend. Document Classifier Document Reader Config Document Read Action 
- This field defines the Amazon Textract API operation that Amazon Comprehend uses to extract text from PDF files and image files. Enter one of the following values:- TEXTRACT_DETECT_DOCUMENT_TEXT- The Amazon Comprehend service uses the- DetectDocumentTextAPI operation.
- TEXTRACT_ANALYZE_DOCUMENT- The Amazon Comprehend service uses the- AnalyzeDocumentAPI operation.
 
- DocumentRead Pulumi.Mode Aws Native. Comprehend. Document Classifier Document Reader Config Document Read Mode 
- Determines the text extraction actions for PDF files. Enter one of the following values:- SERVICE_DEFAULT- use the Amazon Comprehend service defaults for PDF files.
- FORCE_DOCUMENT_READ_ACTION- Amazon Comprehend uses the Textract API specified by DocumentReadAction for all PDF files, including digital PDF files.
 
- FeatureTypes List<Pulumi.Aws Native. Comprehend. Document Classifier Document Reader Config Feature Types Item> 
- Specifies the type of Amazon Textract features to apply. If you chose TEXTRACT_ANALYZE_DOCUMENTas the read action, you must specify one or both of the following values:- TABLES- Returns additional information about any tables that are detected in the input document.
- FORMS- Returns additional information about any forms that are detected in the input document.
 
- DocumentRead DocumentAction Classifier Document Reader Config Document Read Action 
- This field defines the Amazon Textract API operation that Amazon Comprehend uses to extract text from PDF files and image files. Enter one of the following values:- TEXTRACT_DETECT_DOCUMENT_TEXT- The Amazon Comprehend service uses the- DetectDocumentTextAPI operation.
- TEXTRACT_ANALYZE_DOCUMENT- The Amazon Comprehend service uses the- AnalyzeDocumentAPI operation.
 
- DocumentRead DocumentMode Classifier Document Reader Config Document Read Mode 
- Determines the text extraction actions for PDF files. Enter one of the following values:- SERVICE_DEFAULT- use the Amazon Comprehend service defaults for PDF files.
- FORCE_DOCUMENT_READ_ACTION- Amazon Comprehend uses the Textract API specified by DocumentReadAction for all PDF files, including digital PDF files.
 
- FeatureTypes []DocumentClassifier Document Reader Config Feature Types Item 
- Specifies the type of Amazon Textract features to apply. If you chose TEXTRACT_ANALYZE_DOCUMENTas the read action, you must specify one or both of the following values:- TABLES- Returns additional information about any tables that are detected in the input document.
- FORMS- Returns additional information about any forms that are detected in the input document.
 
- documentRead DocumentAction Classifier Document Reader Config Document Read Action 
- This field defines the Amazon Textract API operation that Amazon Comprehend uses to extract text from PDF files and image files. Enter one of the following values:- TEXTRACT_DETECT_DOCUMENT_TEXT- The Amazon Comprehend service uses the- DetectDocumentTextAPI operation.
- TEXTRACT_ANALYZE_DOCUMENT- The Amazon Comprehend service uses the- AnalyzeDocumentAPI operation.
 
- documentRead DocumentMode Classifier Document Reader Config Document Read Mode 
- Determines the text extraction actions for PDF files. Enter one of the following values:- SERVICE_DEFAULT- use the Amazon Comprehend service defaults for PDF files.
- FORCE_DOCUMENT_READ_ACTION- Amazon Comprehend uses the Textract API specified by DocumentReadAction for all PDF files, including digital PDF files.
 
- featureTypes List<DocumentClassifier Document Reader Config Feature Types Item> 
- Specifies the type of Amazon Textract features to apply. If you chose TEXTRACT_ANALYZE_DOCUMENTas the read action, you must specify one or both of the following values:- TABLES- Returns additional information about any tables that are detected in the input document.
- FORMS- Returns additional information about any forms that are detected in the input document.
 
- documentRead DocumentAction Classifier Document Reader Config Document Read Action 
- This field defines the Amazon Textract API operation that Amazon Comprehend uses to extract text from PDF files and image files. Enter one of the following values:- TEXTRACT_DETECT_DOCUMENT_TEXT- The Amazon Comprehend service uses the- DetectDocumentTextAPI operation.
- TEXTRACT_ANALYZE_DOCUMENT- The Amazon Comprehend service uses the- AnalyzeDocumentAPI operation.
 
- documentRead DocumentMode Classifier Document Reader Config Document Read Mode 
- Determines the text extraction actions for PDF files. Enter one of the following values:- SERVICE_DEFAULT- use the Amazon Comprehend service defaults for PDF files.
- FORCE_DOCUMENT_READ_ACTION- Amazon Comprehend uses the Textract API specified by DocumentReadAction for all PDF files, including digital PDF files.
 
- featureTypes DocumentClassifier Document Reader Config Feature Types Item[] 
- Specifies the type of Amazon Textract features to apply. If you chose TEXTRACT_ANALYZE_DOCUMENTas the read action, you must specify one or both of the following values:- TABLES- Returns additional information about any tables that are detected in the input document.
- FORMS- Returns additional information about any forms that are detected in the input document.
 
- document_read_ Documentaction Classifier Document Reader Config Document Read Action 
- This field defines the Amazon Textract API operation that Amazon Comprehend uses to extract text from PDF files and image files. Enter one of the following values:- TEXTRACT_DETECT_DOCUMENT_TEXT- The Amazon Comprehend service uses the- DetectDocumentTextAPI operation.
- TEXTRACT_ANALYZE_DOCUMENT- The Amazon Comprehend service uses the- AnalyzeDocumentAPI operation.
 
- document_read_ Documentmode Classifier Document Reader Config Document Read Mode 
- Determines the text extraction actions for PDF files. Enter one of the following values:- SERVICE_DEFAULT- use the Amazon Comprehend service defaults for PDF files.
- FORCE_DOCUMENT_READ_ACTION- Amazon Comprehend uses the Textract API specified by DocumentReadAction for all PDF files, including digital PDF files.
 
- feature_types Sequence[DocumentClassifier Document Reader Config Feature Types Item] 
- Specifies the type of Amazon Textract features to apply. If you chose TEXTRACT_ANALYZE_DOCUMENTas the read action, you must specify one or both of the following values:- TABLES- Returns additional information about any tables that are detected in the input document.
- FORMS- Returns additional information about any forms that are detected in the input document.
 
- documentRead "TEXTRACT_DETECT_DOCUMENT_TEXT" | "TEXTRACT_ANALYZE_DOCUMENT"Action 
- This field defines the Amazon Textract API operation that Amazon Comprehend uses to extract text from PDF files and image files. Enter one of the following values:- TEXTRACT_DETECT_DOCUMENT_TEXT- The Amazon Comprehend service uses the- DetectDocumentTextAPI operation.
- TEXTRACT_ANALYZE_DOCUMENT- The Amazon Comprehend service uses the- AnalyzeDocumentAPI operation.
 
- documentRead "SERVICE_DEFAULT" | "FORCE_DOCUMENT_READ_ACTION"Mode 
- Determines the text extraction actions for PDF files. Enter one of the following values:- SERVICE_DEFAULT- use the Amazon Comprehend service defaults for PDF files.
- FORCE_DOCUMENT_READ_ACTION- Amazon Comprehend uses the Textract API specified by DocumentReadAction for all PDF files, including digital PDF files.
 
- featureTypes List<"TABLES" | "FORMS">
- Specifies the type of Amazon Textract features to apply. If you chose TEXTRACT_ANALYZE_DOCUMENTas the read action, you must specify one or both of the following values:- TABLES- Returns additional information about any tables that are detected in the input document.
- FORMS- Returns additional information about any forms that are detected in the input document.
 
DocumentClassifierDocumentReaderConfigDocumentReadAction, DocumentClassifierDocumentReaderConfigDocumentReadActionArgs                
- TextractDetect Document Text 
- TEXTRACT_DETECT_DOCUMENT_TEXT
- TextractAnalyze Document 
- TEXTRACT_ANALYZE_DOCUMENT
- DocumentClassifier Document Reader Config Document Read Action Textract Detect Document Text 
- TEXTRACT_DETECT_DOCUMENT_TEXT
- DocumentClassifier Document Reader Config Document Read Action Textract Analyze Document 
- TEXTRACT_ANALYZE_DOCUMENT
- TextractDetect Document Text 
- TEXTRACT_DETECT_DOCUMENT_TEXT
- TextractAnalyze Document 
- TEXTRACT_ANALYZE_DOCUMENT
- TextractDetect Document Text 
- TEXTRACT_DETECT_DOCUMENT_TEXT
- TextractAnalyze Document 
- TEXTRACT_ANALYZE_DOCUMENT
- TEXTRACT_DETECT_DOCUMENT_TEXT
- TEXTRACT_DETECT_DOCUMENT_TEXT
- TEXTRACT_ANALYZE_DOCUMENT
- TEXTRACT_ANALYZE_DOCUMENT
- "TEXTRACT_DETECT_DOCUMENT_TEXT"
- TEXTRACT_DETECT_DOCUMENT_TEXT
- "TEXTRACT_ANALYZE_DOCUMENT"
- TEXTRACT_ANALYZE_DOCUMENT
DocumentClassifierDocumentReaderConfigDocumentReadMode, DocumentClassifierDocumentReaderConfigDocumentReadModeArgs                
- ServiceDefault 
- SERVICE_DEFAULT
- ForceDocument Read Action 
- FORCE_DOCUMENT_READ_ACTION
- DocumentClassifier Document Reader Config Document Read Mode Service Default 
- SERVICE_DEFAULT
- DocumentClassifier Document Reader Config Document Read Mode Force Document Read Action 
- FORCE_DOCUMENT_READ_ACTION
- ServiceDefault 
- SERVICE_DEFAULT
- ForceDocument Read Action 
- FORCE_DOCUMENT_READ_ACTION
- ServiceDefault 
- SERVICE_DEFAULT
- ForceDocument Read Action 
- FORCE_DOCUMENT_READ_ACTION
- SERVICE_DEFAULT
- SERVICE_DEFAULT
- FORCE_DOCUMENT_READ_ACTION
- FORCE_DOCUMENT_READ_ACTION
- "SERVICE_DEFAULT"
- SERVICE_DEFAULT
- "FORCE_DOCUMENT_READ_ACTION"
- FORCE_DOCUMENT_READ_ACTION
DocumentClassifierDocumentReaderConfigFeatureTypesItem, DocumentClassifierDocumentReaderConfigFeatureTypesItemArgs                
- Tables
- TABLES
- Forms
- FORMS
- DocumentClassifier Document Reader Config Feature Types Item Tables 
- TABLES
- DocumentClassifier Document Reader Config Feature Types Item Forms 
- FORMS
- Tables
- TABLES
- Forms
- FORMS
- Tables
- TABLES
- Forms
- FORMS
- TABLES
- TABLES
- FORMS
- FORMS
- "TABLES"
- TABLES
- "FORMS"
- FORMS
DocumentClassifierDocuments, DocumentClassifierDocumentsArgs      
- s3_uri str
- The S3 URI location of the training documents specified in the S3Uri CSV file.
- test_s3_ struri 
- The S3 URI location of the test documents included in the TestS3Uri CSV file. This field is not required if you do not specify a test CSV file.
DocumentClassifierInputDataConfig, DocumentClassifierInputDataConfigArgs          
- AugmentedManifests List<Pulumi.Aws Native. Comprehend. Inputs. Document Classifier Augmented Manifests List Item> 
- A list of augmented manifest files that provide training data for your custom model. An augmented manifest file is a labeled dataset that is produced by Amazon SageMaker Ground Truth. - This parameter is required if you set - DataFormatto- AUGMENTED_MANIFEST.
- DataFormat Pulumi.Aws Native. Comprehend. Document Classifier Input Data Config Data Format 
- The format of your training data: - COMPREHEND_CSV: A two-column CSV file, where labels are provided in the first column, and documents are provided in the second. If you use this value, you must provide the- S3Uriparameter in your request.
- AUGMENTED_MANIFEST: A labeled dataset that is produced by Amazon SageMaker Ground Truth. This file is in JSON lines format. Each line is a complete JSON object that contains a training document and its associated labels.
 - If you use this value, you must provide the - AugmentedManifestsparameter in your request.- If you don't specify a value, Amazon Comprehend uses - COMPREHEND_CSVas the default.
- DocumentReader Pulumi.Config Aws Native. Comprehend. Inputs. Document Classifier Document Reader Config 
- DocumentType Pulumi.Aws Native. Comprehend. Document Classifier Input Data Config Document Type 
- The type of input documents for training the model. Provide plain-text documents to create a plain-text model, and provide semi-structured documents to create a native document model.
- Documents
Pulumi.Aws Native. Comprehend. Inputs. Document Classifier Documents 
- The S3 location of the training documents. This parameter is required in a request to create a native document model.
- LabelDelimiter string
- Indicates the delimiter used to separate each label for training a multi-label classifier. The default delimiter between labels is a pipe (|). You can use a different character as a delimiter (if it's an allowed character) by specifying it under Delimiter for labels. If the training documents use a delimiter other than the default or the delimiter you specify, the labels on that line will be combined to make a single unique label, such as LABELLABELLABEL.
- S3Uri string
- The Amazon S3 URI for the input data. The S3 bucket must be in the same Region as the API endpoint that you are calling. The URI can point to a single input file or it can provide the prefix for a collection of input files. - For example, if you use the URI - S3://bucketName/prefix, if the prefix is a single file, Amazon Comprehend uses that file as input. If more than one file begins with the prefix, Amazon Comprehend uses all of them as input.- This parameter is required if you set - DataFormatto- COMPREHEND_CSV.
- TestS3Uri string
- This specifies the Amazon S3 location that contains the test annotations for the document classifier. The URI must be in the same AWS Region as the API endpoint that you are calling.
- AugmentedManifests []DocumentClassifier Augmented Manifests List Item 
- A list of augmented manifest files that provide training data for your custom model. An augmented manifest file is a labeled dataset that is produced by Amazon SageMaker Ground Truth. - This parameter is required if you set - DataFormatto- AUGMENTED_MANIFEST.
- DataFormat DocumentClassifier Input Data Config Data Format 
- The format of your training data: - COMPREHEND_CSV: A two-column CSV file, where labels are provided in the first column, and documents are provided in the second. If you use this value, you must provide the- S3Uriparameter in your request.
- AUGMENTED_MANIFEST: A labeled dataset that is produced by Amazon SageMaker Ground Truth. This file is in JSON lines format. Each line is a complete JSON object that contains a training document and its associated labels.
 - If you use this value, you must provide the - AugmentedManifestsparameter in your request.- If you don't specify a value, Amazon Comprehend uses - COMPREHEND_CSVas the default.
- DocumentReader DocumentConfig Classifier Document Reader Config 
- DocumentType DocumentClassifier Input Data Config Document Type 
- The type of input documents for training the model. Provide plain-text documents to create a plain-text model, and provide semi-structured documents to create a native document model.
- Documents
DocumentClassifier Documents 
- The S3 location of the training documents. This parameter is required in a request to create a native document model.
- LabelDelimiter string
- Indicates the delimiter used to separate each label for training a multi-label classifier. The default delimiter between labels is a pipe (|). You can use a different character as a delimiter (if it's an allowed character) by specifying it under Delimiter for labels. If the training documents use a delimiter other than the default or the delimiter you specify, the labels on that line will be combined to make a single unique label, such as LABELLABELLABEL.
- S3Uri string
- The Amazon S3 URI for the input data. The S3 bucket must be in the same Region as the API endpoint that you are calling. The URI can point to a single input file or it can provide the prefix for a collection of input files. - For example, if you use the URI - S3://bucketName/prefix, if the prefix is a single file, Amazon Comprehend uses that file as input. If more than one file begins with the prefix, Amazon Comprehend uses all of them as input.- This parameter is required if you set - DataFormatto- COMPREHEND_CSV.
- TestS3Uri string
- This specifies the Amazon S3 location that contains the test annotations for the document classifier. The URI must be in the same AWS Region as the API endpoint that you are calling.
- augmentedManifests List<DocumentClassifier Augmented Manifests List Item> 
- A list of augmented manifest files that provide training data for your custom model. An augmented manifest file is a labeled dataset that is produced by Amazon SageMaker Ground Truth. - This parameter is required if you set - DataFormatto- AUGMENTED_MANIFEST.
- dataFormat DocumentClassifier Input Data Config Data Format 
- The format of your training data: - COMPREHEND_CSV: A two-column CSV file, where labels are provided in the first column, and documents are provided in the second. If you use this value, you must provide the- S3Uriparameter in your request.
- AUGMENTED_MANIFEST: A labeled dataset that is produced by Amazon SageMaker Ground Truth. This file is in JSON lines format. Each line is a complete JSON object that contains a training document and its associated labels.
 - If you use this value, you must provide the - AugmentedManifestsparameter in your request.- If you don't specify a value, Amazon Comprehend uses - COMPREHEND_CSVas the default.
- documentReader DocumentConfig Classifier Document Reader Config 
- documentType DocumentClassifier Input Data Config Document Type 
- The type of input documents for training the model. Provide plain-text documents to create a plain-text model, and provide semi-structured documents to create a native document model.
- documents
DocumentClassifier Documents 
- The S3 location of the training documents. This parameter is required in a request to create a native document model.
- labelDelimiter String
- Indicates the delimiter used to separate each label for training a multi-label classifier. The default delimiter between labels is a pipe (|). You can use a different character as a delimiter (if it's an allowed character) by specifying it under Delimiter for labels. If the training documents use a delimiter other than the default or the delimiter you specify, the labels on that line will be combined to make a single unique label, such as LABELLABELLABEL.
- s3Uri String
- The Amazon S3 URI for the input data. The S3 bucket must be in the same Region as the API endpoint that you are calling. The URI can point to a single input file or it can provide the prefix for a collection of input files. - For example, if you use the URI - S3://bucketName/prefix, if the prefix is a single file, Amazon Comprehend uses that file as input. If more than one file begins with the prefix, Amazon Comprehend uses all of them as input.- This parameter is required if you set - DataFormatto- COMPREHEND_CSV.
- testS3Uri String
- This specifies the Amazon S3 location that contains the test annotations for the document classifier. The URI must be in the same AWS Region as the API endpoint that you are calling.
- augmentedManifests DocumentClassifier Augmented Manifests List Item[] 
- A list of augmented manifest files that provide training data for your custom model. An augmented manifest file is a labeled dataset that is produced by Amazon SageMaker Ground Truth. - This parameter is required if you set - DataFormatto- AUGMENTED_MANIFEST.
- dataFormat DocumentClassifier Input Data Config Data Format 
- The format of your training data: - COMPREHEND_CSV: A two-column CSV file, where labels are provided in the first column, and documents are provided in the second. If you use this value, you must provide the- S3Uriparameter in your request.
- AUGMENTED_MANIFEST: A labeled dataset that is produced by Amazon SageMaker Ground Truth. This file is in JSON lines format. Each line is a complete JSON object that contains a training document and its associated labels.
 - If you use this value, you must provide the - AugmentedManifestsparameter in your request.- If you don't specify a value, Amazon Comprehend uses - COMPREHEND_CSVas the default.
- documentReader DocumentConfig Classifier Document Reader Config 
- documentType DocumentClassifier Input Data Config Document Type 
- The type of input documents for training the model. Provide plain-text documents to create a plain-text model, and provide semi-structured documents to create a native document model.
- documents
DocumentClassifier Documents 
- The S3 location of the training documents. This parameter is required in a request to create a native document model.
- labelDelimiter string
- Indicates the delimiter used to separate each label for training a multi-label classifier. The default delimiter between labels is a pipe (|). You can use a different character as a delimiter (if it's an allowed character) by specifying it under Delimiter for labels. If the training documents use a delimiter other than the default or the delimiter you specify, the labels on that line will be combined to make a single unique label, such as LABELLABELLABEL.
- s3Uri string
- The Amazon S3 URI for the input data. The S3 bucket must be in the same Region as the API endpoint that you are calling. The URI can point to a single input file or it can provide the prefix for a collection of input files. - For example, if you use the URI - S3://bucketName/prefix, if the prefix is a single file, Amazon Comprehend uses that file as input. If more than one file begins with the prefix, Amazon Comprehend uses all of them as input.- This parameter is required if you set - DataFormatto- COMPREHEND_CSV.
- testS3Uri string
- This specifies the Amazon S3 location that contains the test annotations for the document classifier. The URI must be in the same AWS Region as the API endpoint that you are calling.
- augmented_manifests Sequence[DocumentClassifier Augmented Manifests List Item] 
- A list of augmented manifest files that provide training data for your custom model. An augmented manifest file is a labeled dataset that is produced by Amazon SageMaker Ground Truth. - This parameter is required if you set - DataFormatto- AUGMENTED_MANIFEST.
- data_format DocumentClassifier Input Data Config Data Format 
- The format of your training data: - COMPREHEND_CSV: A two-column CSV file, where labels are provided in the first column, and documents are provided in the second. If you use this value, you must provide the- S3Uriparameter in your request.
- AUGMENTED_MANIFEST: A labeled dataset that is produced by Amazon SageMaker Ground Truth. This file is in JSON lines format. Each line is a complete JSON object that contains a training document and its associated labels.
 - If you use this value, you must provide the - AugmentedManifestsparameter in your request.- If you don't specify a value, Amazon Comprehend uses - COMPREHEND_CSVas the default.
- document_reader_ Documentconfig Classifier Document Reader Config 
- document_type DocumentClassifier Input Data Config Document Type 
- The type of input documents for training the model. Provide plain-text documents to create a plain-text model, and provide semi-structured documents to create a native document model.
- documents
DocumentClassifier Documents 
- The S3 location of the training documents. This parameter is required in a request to create a native document model.
- label_delimiter str
- Indicates the delimiter used to separate each label for training a multi-label classifier. The default delimiter between labels is a pipe (|). You can use a different character as a delimiter (if it's an allowed character) by specifying it under Delimiter for labels. If the training documents use a delimiter other than the default or the delimiter you specify, the labels on that line will be combined to make a single unique label, such as LABELLABELLABEL.
- s3_uri str
- The Amazon S3 URI for the input data. The S3 bucket must be in the same Region as the API endpoint that you are calling. The URI can point to a single input file or it can provide the prefix for a collection of input files. - For example, if you use the URI - S3://bucketName/prefix, if the prefix is a single file, Amazon Comprehend uses that file as input. If more than one file begins with the prefix, Amazon Comprehend uses all of them as input.- This parameter is required if you set - DataFormatto- COMPREHEND_CSV.
- test_s3_ struri 
- This specifies the Amazon S3 location that contains the test annotations for the document classifier. The URI must be in the same AWS Region as the API endpoint that you are calling.
- augmentedManifests List<Property Map>
- A list of augmented manifest files that provide training data for your custom model. An augmented manifest file is a labeled dataset that is produced by Amazon SageMaker Ground Truth. - This parameter is required if you set - DataFormatto- AUGMENTED_MANIFEST.
- dataFormat "COMPREHEND_CSV" | "AUGMENTED_MANIFEST"
- The format of your training data: - COMPREHEND_CSV: A two-column CSV file, where labels are provided in the first column, and documents are provided in the second. If you use this value, you must provide the- S3Uriparameter in your request.
- AUGMENTED_MANIFEST: A labeled dataset that is produced by Amazon SageMaker Ground Truth. This file is in JSON lines format. Each line is a complete JSON object that contains a training document and its associated labels.
 - If you use this value, you must provide the - AugmentedManifestsparameter in your request.- If you don't specify a value, Amazon Comprehend uses - COMPREHEND_CSVas the default.
- documentReader Property MapConfig 
- documentType "PLAIN_TEXT_DOCUMENT" | "SEMI_STRUCTURED_DOCUMENT"
- The type of input documents for training the model. Provide plain-text documents to create a plain-text model, and provide semi-structured documents to create a native document model.
- documents Property Map
- The S3 location of the training documents. This parameter is required in a request to create a native document model.
- labelDelimiter String
- Indicates the delimiter used to separate each label for training a multi-label classifier. The default delimiter between labels is a pipe (|). You can use a different character as a delimiter (if it's an allowed character) by specifying it under Delimiter for labels. If the training documents use a delimiter other than the default or the delimiter you specify, the labels on that line will be combined to make a single unique label, such as LABELLABELLABEL.
- s3Uri String
- The Amazon S3 URI for the input data. The S3 bucket must be in the same Region as the API endpoint that you are calling. The URI can point to a single input file or it can provide the prefix for a collection of input files. - For example, if you use the URI - S3://bucketName/prefix, if the prefix is a single file, Amazon Comprehend uses that file as input. If more than one file begins with the prefix, Amazon Comprehend uses all of them as input.- This parameter is required if you set - DataFormatto- COMPREHEND_CSV.
- testS3Uri String
- This specifies the Amazon S3 location that contains the test annotations for the document classifier. The URI must be in the same AWS Region as the API endpoint that you are calling.
DocumentClassifierInputDataConfigDataFormat, DocumentClassifierInputDataConfigDataFormatArgs              
- ComprehendCsv 
- COMPREHEND_CSV
- AugmentedManifest 
- AUGMENTED_MANIFEST
- DocumentClassifier Input Data Config Data Format Comprehend Csv 
- COMPREHEND_CSV
- DocumentClassifier Input Data Config Data Format Augmented Manifest 
- AUGMENTED_MANIFEST
- ComprehendCsv 
- COMPREHEND_CSV
- AugmentedManifest 
- AUGMENTED_MANIFEST
- ComprehendCsv 
- COMPREHEND_CSV
- AugmentedManifest 
- AUGMENTED_MANIFEST
- COMPREHEND_CSV
- COMPREHEND_CSV
- AUGMENTED_MANIFEST
- AUGMENTED_MANIFEST
- "COMPREHEND_CSV"
- COMPREHEND_CSV
- "AUGMENTED_MANIFEST"
- AUGMENTED_MANIFEST
DocumentClassifierInputDataConfigDocumentType, DocumentClassifierInputDataConfigDocumentTypeArgs              
- PlainText Document 
- PLAIN_TEXT_DOCUMENT
- SemiStructured Document 
- SEMI_STRUCTURED_DOCUMENT
- DocumentClassifier Input Data Config Document Type Plain Text Document 
- PLAIN_TEXT_DOCUMENT
- DocumentClassifier Input Data Config Document Type Semi Structured Document 
- SEMI_STRUCTURED_DOCUMENT
- PlainText Document 
- PLAIN_TEXT_DOCUMENT
- SemiStructured Document 
- SEMI_STRUCTURED_DOCUMENT
- PlainText Document 
- PLAIN_TEXT_DOCUMENT
- SemiStructured Document 
- SEMI_STRUCTURED_DOCUMENT
- PLAIN_TEXT_DOCUMENT
- PLAIN_TEXT_DOCUMENT
- SEMI_STRUCTURED_DOCUMENT
- SEMI_STRUCTURED_DOCUMENT
- "PLAIN_TEXT_DOCUMENT"
- PLAIN_TEXT_DOCUMENT
- "SEMI_STRUCTURED_DOCUMENT"
- SEMI_STRUCTURED_DOCUMENT
DocumentClassifierLanguageCode, DocumentClassifierLanguageCodeArgs        
- En
- en
- Es
- es
- Fr
- fr
- It
- it
- De
- de
- Pt
- pt
- DocumentClassifier Language Code En 
- en
- DocumentClassifier Language Code Es 
- es
- DocumentClassifier Language Code Fr 
- fr
- DocumentClassifier Language Code It 
- it
- DocumentClassifier Language Code De 
- de
- DocumentClassifier Language Code Pt 
- pt
- En
- en
- Es
- es
- Fr
- fr
- It
- it
- De
- de
- Pt
- pt
- En
- en
- Es
- es
- Fr
- fr
- It
- it
- De
- de
- Pt
- pt
- EN
- en
- ES
- es
- FR
- fr
- IT
- it
- DE
- de
- PT
- pt
- "en"
- en
- "es"
- es
- "fr"
- fr
- "it"
- it
- "de"
- de
- "pt"
- pt
DocumentClassifierMode, DocumentClassifierModeArgs      
- MultiClass 
- MULTI_CLASS
- MultiLabel 
- MULTI_LABEL
- DocumentClassifier Mode Multi Class 
- MULTI_CLASS
- DocumentClassifier Mode Multi Label 
- MULTI_LABEL
- MultiClass 
- MULTI_CLASS
- MultiLabel 
- MULTI_LABEL
- MultiClass 
- MULTI_CLASS
- MultiLabel 
- MULTI_LABEL
- MULTI_CLASS
- MULTI_CLASS
- MULTI_LABEL
- MULTI_LABEL
- "MULTI_CLASS"
- MULTI_CLASS
- "MULTI_LABEL"
- MULTI_LABEL
DocumentClassifierOutputDataConfig, DocumentClassifierOutputDataConfigArgs          
- KmsKey stringId 
- ID for the AWS Key Management Service (KMS) key that Amazon Comprehend uses to encrypt the output results from an analysis job. The KmsKeyId can be one of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
- KMS Key Alias: "alias/ExampleAlias"
- ARN of a KMS Key Alias: "arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias"
 
- KMS Key ID: 
- S3Uri string
- When you use the - OutputDataConfigobject while creating a custom classifier, you specify the Amazon S3 location where you want to write the confusion matrix and other output files. The URI must be in the same Region as the API endpoint that you are calling. The location is used as the prefix for the actual location of this output file.- When the custom classifier job is finished, the service creates the output file in a directory specific to the job. The - S3Urifield contains the location of the output file, called- output.tar.gz. It is a compressed archive that contains the confusion matrix.
- KmsKey stringId 
- ID for the AWS Key Management Service (KMS) key that Amazon Comprehend uses to encrypt the output results from an analysis job. The KmsKeyId can be one of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
- KMS Key Alias: "alias/ExampleAlias"
- ARN of a KMS Key Alias: "arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias"
 
- KMS Key ID: 
- S3Uri string
- When you use the - OutputDataConfigobject while creating a custom classifier, you specify the Amazon S3 location where you want to write the confusion matrix and other output files. The URI must be in the same Region as the API endpoint that you are calling. The location is used as the prefix for the actual location of this output file.- When the custom classifier job is finished, the service creates the output file in a directory specific to the job. The - S3Urifield contains the location of the output file, called- output.tar.gz. It is a compressed archive that contains the confusion matrix.
- kmsKey StringId 
- ID for the AWS Key Management Service (KMS) key that Amazon Comprehend uses to encrypt the output results from an analysis job. The KmsKeyId can be one of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
- KMS Key Alias: "alias/ExampleAlias"
- ARN of a KMS Key Alias: "arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias"
 
- KMS Key ID: 
- s3Uri String
- When you use the - OutputDataConfigobject while creating a custom classifier, you specify the Amazon S3 location where you want to write the confusion matrix and other output files. The URI must be in the same Region as the API endpoint that you are calling. The location is used as the prefix for the actual location of this output file.- When the custom classifier job is finished, the service creates the output file in a directory specific to the job. The - S3Urifield contains the location of the output file, called- output.tar.gz. It is a compressed archive that contains the confusion matrix.
- kmsKey stringId 
- ID for the AWS Key Management Service (KMS) key that Amazon Comprehend uses to encrypt the output results from an analysis job. The KmsKeyId can be one of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
- KMS Key Alias: "alias/ExampleAlias"
- ARN of a KMS Key Alias: "arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias"
 
- KMS Key ID: 
- s3Uri string
- When you use the - OutputDataConfigobject while creating a custom classifier, you specify the Amazon S3 location where you want to write the confusion matrix and other output files. The URI must be in the same Region as the API endpoint that you are calling. The location is used as the prefix for the actual location of this output file.- When the custom classifier job is finished, the service creates the output file in a directory specific to the job. The - S3Urifield contains the location of the output file, called- output.tar.gz. It is a compressed archive that contains the confusion matrix.
- kms_key_ strid 
- ID for the AWS Key Management Service (KMS) key that Amazon Comprehend uses to encrypt the output results from an analysis job. The KmsKeyId can be one of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
- KMS Key Alias: "alias/ExampleAlias"
- ARN of a KMS Key Alias: "arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias"
 
- KMS Key ID: 
- s3_uri str
- When you use the - OutputDataConfigobject while creating a custom classifier, you specify the Amazon S3 location where you want to write the confusion matrix and other output files. The URI must be in the same Region as the API endpoint that you are calling. The location is used as the prefix for the actual location of this output file.- When the custom classifier job is finished, the service creates the output file in a directory specific to the job. The - S3Urifield contains the location of the output file, called- output.tar.gz. It is a compressed archive that contains the confusion matrix.
- kmsKey StringId 
- ID for the AWS Key Management Service (KMS) key that Amazon Comprehend uses to encrypt the output results from an analysis job. The KmsKeyId can be one of the following formats:- KMS Key ID: "1234abcd-12ab-34cd-56ef-1234567890ab"
- Amazon Resource Name (ARN) of a KMS Key: "arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"
- KMS Key Alias: "alias/ExampleAlias"
- ARN of a KMS Key Alias: "arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias"
 
- KMS Key ID: 
- s3Uri String
- When you use the - OutputDataConfigobject while creating a custom classifier, you specify the Amazon S3 location where you want to write the confusion matrix and other output files. The URI must be in the same Region as the API endpoint that you are calling. The location is used as the prefix for the actual location of this output file.- When the custom classifier job is finished, the service creates the output file in a directory specific to the job. The - S3Urifield contains the location of the output file, called- output.tar.gz. It is a compressed archive that contains the confusion matrix.
DocumentClassifierVpcConfig, DocumentClassifierVpcConfigArgs        
- SecurityGroup List<string>Ids 
- The ID number for a security group on an instance of your private VPC. Security groups on your VPC function serve as a virtual firewall to control inbound and outbound traffic and provides security for the resources that you’ll be accessing on the VPC. This ID number is preceded by "sg-", for instance: "sg-03b388029b0a285ea". For more information, see Security Groups for your VPC .
- Subnets List<string>
- The ID for each subnet being used in your private VPC. This subnet is a subset of the a range of IPv4 addresses used by the VPC and is specific to a given availability zone in the VPC’s Region. This ID number is preceded by "subnet-", for instance: "subnet-04ccf456919e69055". For more information, see VPCs and Subnets .
- SecurityGroup []stringIds 
- The ID number for a security group on an instance of your private VPC. Security groups on your VPC function serve as a virtual firewall to control inbound and outbound traffic and provides security for the resources that you’ll be accessing on the VPC. This ID number is preceded by "sg-", for instance: "sg-03b388029b0a285ea". For more information, see Security Groups for your VPC .
- Subnets []string
- The ID for each subnet being used in your private VPC. This subnet is a subset of the a range of IPv4 addresses used by the VPC and is specific to a given availability zone in the VPC’s Region. This ID number is preceded by "subnet-", for instance: "subnet-04ccf456919e69055". For more information, see VPCs and Subnets .
- securityGroup List<String>Ids 
- The ID number for a security group on an instance of your private VPC. Security groups on your VPC function serve as a virtual firewall to control inbound and outbound traffic and provides security for the resources that you’ll be accessing on the VPC. This ID number is preceded by "sg-", for instance: "sg-03b388029b0a285ea". For more information, see Security Groups for your VPC .
- subnets List<String>
- The ID for each subnet being used in your private VPC. This subnet is a subset of the a range of IPv4 addresses used by the VPC and is specific to a given availability zone in the VPC’s Region. This ID number is preceded by "subnet-", for instance: "subnet-04ccf456919e69055". For more information, see VPCs and Subnets .
- securityGroup string[]Ids 
- The ID number for a security group on an instance of your private VPC. Security groups on your VPC function serve as a virtual firewall to control inbound and outbound traffic and provides security for the resources that you’ll be accessing on the VPC. This ID number is preceded by "sg-", for instance: "sg-03b388029b0a285ea". For more information, see Security Groups for your VPC .
- subnets string[]
- The ID for each subnet being used in your private VPC. This subnet is a subset of the a range of IPv4 addresses used by the VPC and is specific to a given availability zone in the VPC’s Region. This ID number is preceded by "subnet-", for instance: "subnet-04ccf456919e69055". For more information, see VPCs and Subnets .
- security_group_ Sequence[str]ids 
- The ID number for a security group on an instance of your private VPC. Security groups on your VPC function serve as a virtual firewall to control inbound and outbound traffic and provides security for the resources that you’ll be accessing on the VPC. This ID number is preceded by "sg-", for instance: "sg-03b388029b0a285ea". For more information, see Security Groups for your VPC .
- subnets Sequence[str]
- The ID for each subnet being used in your private VPC. This subnet is a subset of the a range of IPv4 addresses used by the VPC and is specific to a given availability zone in the VPC’s Region. This ID number is preceded by "subnet-", for instance: "subnet-04ccf456919e69055". For more information, see VPCs and Subnets .
- securityGroup List<String>Ids 
- The ID number for a security group on an instance of your private VPC. Security groups on your VPC function serve as a virtual firewall to control inbound and outbound traffic and provides security for the resources that you’ll be accessing on the VPC. This ID number is preceded by "sg-", for instance: "sg-03b388029b0a285ea". For more information, see Security Groups for your VPC .
- subnets List<String>
- The ID for each subnet being used in your private VPC. This subnet is a subset of the a range of IPv4 addresses used by the VPC and is specific to a given availability zone in the VPC’s Region. This ID number is preceded by "subnet-", for instance: "subnet-04ccf456919e69055". For more information, see VPCs and Subnets .
Tag, TagArgs  
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0
We recommend new projects start with resources from the AWS provider.