/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Comprehend { namespace Model { /** *

An augmented manifest file that provides training data for your custom model. * An augmented manifest file is a labeled dataset that is produced by Amazon * SageMaker Ground Truth.

See Also:

AWS * API Reference

*/ class DatasetAugmentedManifestsListItem { public: AWS_COMPREHEND_API DatasetAugmentedManifestsListItem(); AWS_COMPREHEND_API DatasetAugmentedManifestsListItem(Aws::Utils::Json::JsonView jsonValue); AWS_COMPREHEND_API DatasetAugmentedManifestsListItem& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_COMPREHEND_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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.

*/ inline const Aws::Vector& GetAttributeNames() const{ return m_attributeNames; } /** *

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.

*/ inline bool AttributeNamesHasBeenSet() const { return m_attributeNamesHasBeenSet; } /** *

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.

*/ inline void SetAttributeNames(const Aws::Vector& value) { m_attributeNamesHasBeenSet = true; m_attributeNames = value; } /** *

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.

*/ inline void SetAttributeNames(Aws::Vector&& value) { m_attributeNamesHasBeenSet = true; m_attributeNames = std::move(value); } /** *

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.

*/ inline DatasetAugmentedManifestsListItem& WithAttributeNames(const Aws::Vector& value) { SetAttributeNames(value); return *this;} /** *

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.

*/ inline DatasetAugmentedManifestsListItem& WithAttributeNames(Aws::Vector&& value) { SetAttributeNames(std::move(value)); return *this;} /** *

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.

*/ inline DatasetAugmentedManifestsListItem& AddAttributeNames(const Aws::String& value) { m_attributeNamesHasBeenSet = true; m_attributeNames.push_back(value); return *this; } /** *

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.

*/ inline DatasetAugmentedManifestsListItem& AddAttributeNames(Aws::String&& value) { m_attributeNamesHasBeenSet = true; m_attributeNames.push_back(std::move(value)); return *this; } /** *

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.

*/ inline DatasetAugmentedManifestsListItem& AddAttributeNames(const char* value) { m_attributeNamesHasBeenSet = true; m_attributeNames.push_back(value); return *this; } /** *

The Amazon S3 location of the augmented manifest file.

*/ inline const Aws::String& GetS3Uri() const{ return m_s3Uri; } /** *

The Amazon S3 location of the augmented manifest file.

*/ inline bool S3UriHasBeenSet() const { return m_s3UriHasBeenSet; } /** *

The Amazon S3 location of the augmented manifest file.

*/ inline void SetS3Uri(const Aws::String& value) { m_s3UriHasBeenSet = true; m_s3Uri = value; } /** *

The Amazon S3 location of the augmented manifest file.

*/ inline void SetS3Uri(Aws::String&& value) { m_s3UriHasBeenSet = true; m_s3Uri = std::move(value); } /** *

The Amazon S3 location of the augmented manifest file.

*/ inline void SetS3Uri(const char* value) { m_s3UriHasBeenSet = true; m_s3Uri.assign(value); } /** *

The Amazon S3 location of the augmented manifest file.

*/ inline DatasetAugmentedManifestsListItem& WithS3Uri(const Aws::String& value) { SetS3Uri(value); return *this;} /** *

The Amazon S3 location of the augmented manifest file.

*/ inline DatasetAugmentedManifestsListItem& WithS3Uri(Aws::String&& value) { SetS3Uri(std::move(value)); return *this;} /** *

The Amazon S3 location of the augmented manifest file.

*/ inline DatasetAugmentedManifestsListItem& WithS3Uri(const char* value) { SetS3Uri(value); return *this;} /** *

The S3 prefix to the annotation files that are referred in the augmented * manifest file.

*/ inline const Aws::String& GetAnnotationDataS3Uri() const{ return m_annotationDataS3Uri; } /** *

The S3 prefix to the annotation files that are referred in the augmented * manifest file.

*/ inline bool AnnotationDataS3UriHasBeenSet() const { return m_annotationDataS3UriHasBeenSet; } /** *

The S3 prefix to the annotation files that are referred in the augmented * manifest file.

*/ inline void SetAnnotationDataS3Uri(const Aws::String& value) { m_annotationDataS3UriHasBeenSet = true; m_annotationDataS3Uri = value; } /** *

The S3 prefix to the annotation files that are referred in the augmented * manifest file.

*/ inline void SetAnnotationDataS3Uri(Aws::String&& value) { m_annotationDataS3UriHasBeenSet = true; m_annotationDataS3Uri = std::move(value); } /** *

The S3 prefix to the annotation files that are referred in the augmented * manifest file.

*/ inline void SetAnnotationDataS3Uri(const char* value) { m_annotationDataS3UriHasBeenSet = true; m_annotationDataS3Uri.assign(value); } /** *

The S3 prefix to the annotation files that are referred in the augmented * manifest file.

*/ inline DatasetAugmentedManifestsListItem& WithAnnotationDataS3Uri(const Aws::String& value) { SetAnnotationDataS3Uri(value); return *this;} /** *

The S3 prefix to the annotation files that are referred in the augmented * manifest file.

*/ inline DatasetAugmentedManifestsListItem& WithAnnotationDataS3Uri(Aws::String&& value) { SetAnnotationDataS3Uri(std::move(value)); return *this;} /** *

The S3 prefix to the annotation files that are referred in the augmented * manifest file.

*/ inline DatasetAugmentedManifestsListItem& WithAnnotationDataS3Uri(const char* value) { SetAnnotationDataS3Uri(value); return *this;} /** *

The S3 prefix to the source files (PDFs) that are referred to in the * augmented manifest file.

*/ inline const Aws::String& GetSourceDocumentsS3Uri() const{ return m_sourceDocumentsS3Uri; } /** *

The S3 prefix to the source files (PDFs) that are referred to in the * augmented manifest file.

*/ inline bool SourceDocumentsS3UriHasBeenSet() const { return m_sourceDocumentsS3UriHasBeenSet; } /** *

The S3 prefix to the source files (PDFs) that are referred to in the * augmented manifest file.

*/ inline void SetSourceDocumentsS3Uri(const Aws::String& value) { m_sourceDocumentsS3UriHasBeenSet = true; m_sourceDocumentsS3Uri = value; } /** *

The S3 prefix to the source files (PDFs) that are referred to in the * augmented manifest file.

*/ inline void SetSourceDocumentsS3Uri(Aws::String&& value) { m_sourceDocumentsS3UriHasBeenSet = true; m_sourceDocumentsS3Uri = std::move(value); } /** *

The S3 prefix to the source files (PDFs) that are referred to in the * augmented manifest file.

*/ inline void SetSourceDocumentsS3Uri(const char* value) { m_sourceDocumentsS3UriHasBeenSet = true; m_sourceDocumentsS3Uri.assign(value); } /** *

The S3 prefix to the source files (PDFs) that are referred to in the * augmented manifest file.

*/ inline DatasetAugmentedManifestsListItem& WithSourceDocumentsS3Uri(const Aws::String& value) { SetSourceDocumentsS3Uri(value); return *this;} /** *

The S3 prefix to the source files (PDFs) that are referred to in the * augmented manifest file.

*/ inline DatasetAugmentedManifestsListItem& WithSourceDocumentsS3Uri(Aws::String&& value) { SetSourceDocumentsS3Uri(std::move(value)); return *this;} /** *

The S3 prefix to the source files (PDFs) that are referred to in the * augmented manifest file.

*/ inline DatasetAugmentedManifestsListItem& WithSourceDocumentsS3Uri(const char* value) { SetSourceDocumentsS3Uri(value); return *this;} /** *

The type of augmented manifest. If you don't specify, the default is * PlainTextDocument.

PLAIN_TEXT_DOCUMENT A document type * that represents any unicode text that is encoded in UTF-8.

*/ inline const AugmentedManifestsDocumentTypeFormat& GetDocumentType() const{ return m_documentType; } /** *

The type of augmented manifest. If you don't specify, the default is * PlainTextDocument.

PLAIN_TEXT_DOCUMENT A document type * that represents any unicode text that is encoded in UTF-8.

*/ inline bool DocumentTypeHasBeenSet() const { return m_documentTypeHasBeenSet; } /** *

The type of augmented manifest. If you don't specify, the default is * PlainTextDocument.

PLAIN_TEXT_DOCUMENT A document type * that represents any unicode text that is encoded in UTF-8.

*/ inline void SetDocumentType(const AugmentedManifestsDocumentTypeFormat& value) { m_documentTypeHasBeenSet = true; m_documentType = value; } /** *

The type of augmented manifest. If you don't specify, the default is * PlainTextDocument.

PLAIN_TEXT_DOCUMENT A document type * that represents any unicode text that is encoded in UTF-8.

*/ inline void SetDocumentType(AugmentedManifestsDocumentTypeFormat&& value) { m_documentTypeHasBeenSet = true; m_documentType = std::move(value); } /** *

The type of augmented manifest. If you don't specify, the default is * PlainTextDocument.

PLAIN_TEXT_DOCUMENT A document type * that represents any unicode text that is encoded in UTF-8.

*/ inline DatasetAugmentedManifestsListItem& WithDocumentType(const AugmentedManifestsDocumentTypeFormat& value) { SetDocumentType(value); return *this;} /** *

The type of augmented manifest. If you don't specify, the default is * PlainTextDocument.

PLAIN_TEXT_DOCUMENT A document type * that represents any unicode text that is encoded in UTF-8.

*/ inline DatasetAugmentedManifestsListItem& WithDocumentType(AugmentedManifestsDocumentTypeFormat&& value) { SetDocumentType(std::move(value)); return *this;} private: Aws::Vector m_attributeNames; bool m_attributeNamesHasBeenSet = false; Aws::String m_s3Uri; bool m_s3UriHasBeenSet = false; Aws::String m_annotationDataS3Uri; bool m_annotationDataS3UriHasBeenSet = false; Aws::String m_sourceDocumentsS3Uri; bool m_sourceDocumentsS3UriHasBeenSet = false; AugmentedManifestsDocumentTypeFormat m_documentType; bool m_documentTypeHasBeenSet = false; }; } // namespace Model } // namespace Comprehend } // namespace Aws