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

Describes updates or additions to a dataset. A Single update or addition is * an entry (JSON Line) that provides information about a single image. To update * an existing entry, you match the source-ref field of the update * entry with the source-ref filed of the entry that you want to * update. If the source-ref field doesn't match an existing entry, * the entry is added to dataset as a new entry.

See Also:

AWS * API Reference

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

A Base64-encoded binary data object containing one or JSON lines that either * update the dataset or are additions to the dataset. You change a dataset by * calling UpdateDatasetEntries. If you are using an AWS SDK to call * UpdateDatasetEntries, you don't need to encode Changes * as the SDK encodes the data for you.

For example JSON lines, see * Image-Level labels in manifest files and and Object localization in manifest * files in the Amazon Rekognition Custom Labels Developer Guide.

*/ inline const Aws::Utils::ByteBuffer& GetGroundTruth() const{ return m_groundTruth; } /** *

A Base64-encoded binary data object containing one or JSON lines that either * update the dataset or are additions to the dataset. You change a dataset by * calling UpdateDatasetEntries. If you are using an AWS SDK to call * UpdateDatasetEntries, you don't need to encode Changes * as the SDK encodes the data for you.

For example JSON lines, see * Image-Level labels in manifest files and and Object localization in manifest * files in the Amazon Rekognition Custom Labels Developer Guide.

*/ inline bool GroundTruthHasBeenSet() const { return m_groundTruthHasBeenSet; } /** *

A Base64-encoded binary data object containing one or JSON lines that either * update the dataset or are additions to the dataset. You change a dataset by * calling UpdateDatasetEntries. If you are using an AWS SDK to call * UpdateDatasetEntries, you don't need to encode Changes * as the SDK encodes the data for you.

For example JSON lines, see * Image-Level labels in manifest files and and Object localization in manifest * files in the Amazon Rekognition Custom Labels Developer Guide.

*/ inline void SetGroundTruth(const Aws::Utils::ByteBuffer& value) { m_groundTruthHasBeenSet = true; m_groundTruth = value; } /** *

A Base64-encoded binary data object containing one or JSON lines that either * update the dataset or are additions to the dataset. You change a dataset by * calling UpdateDatasetEntries. If you are using an AWS SDK to call * UpdateDatasetEntries, you don't need to encode Changes * as the SDK encodes the data for you.

For example JSON lines, see * Image-Level labels in manifest files and and Object localization in manifest * files in the Amazon Rekognition Custom Labels Developer Guide.

*/ inline void SetGroundTruth(Aws::Utils::ByteBuffer&& value) { m_groundTruthHasBeenSet = true; m_groundTruth = std::move(value); } /** *

A Base64-encoded binary data object containing one or JSON lines that either * update the dataset or are additions to the dataset. You change a dataset by * calling UpdateDatasetEntries. If you are using an AWS SDK to call * UpdateDatasetEntries, you don't need to encode Changes * as the SDK encodes the data for you.

For example JSON lines, see * Image-Level labels in manifest files and and Object localization in manifest * files in the Amazon Rekognition Custom Labels Developer Guide.

*/ inline DatasetChanges& WithGroundTruth(const Aws::Utils::ByteBuffer& value) { SetGroundTruth(value); return *this;} /** *

A Base64-encoded binary data object containing one or JSON lines that either * update the dataset or are additions to the dataset. You change a dataset by * calling UpdateDatasetEntries. If you are using an AWS SDK to call * UpdateDatasetEntries, you don't need to encode Changes * as the SDK encodes the data for you.

For example JSON lines, see * Image-Level labels in manifest files and and Object localization in manifest * files in the Amazon Rekognition Custom Labels Developer Guide.

*/ inline DatasetChanges& WithGroundTruth(Aws::Utils::ByteBuffer&& value) { SetGroundTruth(std::move(value)); return *this;} private: Aws::Utils::ByteBuffer m_groundTruth; bool m_groundTruthHasBeenSet = false; }; } // namespace Model } // namespace Rekognition } // namespace Aws