AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
DatasetChanges.h
1
6#pragma once
7#include <aws/core/utils/Array.h>
8#include <aws/rekognition/Rekognition_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace Rekognition {
20namespace Model {
21
33 public:
34 AWS_REKOGNITION_API DatasetChanges() = default;
35 AWS_REKOGNITION_API DatasetChanges(Aws::Utils::Json::JsonView jsonValue);
36 AWS_REKOGNITION_API DatasetChanges& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const;
38
40
49 inline const Aws::Utils::ByteBuffer& GetGroundTruth() const { return m_groundTruth; }
50 inline bool GroundTruthHasBeenSet() const { return m_groundTruthHasBeenSet; }
51 template <typename GroundTruthT = Aws::Utils::ByteBuffer>
52 void SetGroundTruth(GroundTruthT&& value) {
53 m_groundTruthHasBeenSet = true;
54 m_groundTruth = std::forward<GroundTruthT>(value);
55 }
56 template <typename GroundTruthT = Aws::Utils::ByteBuffer>
57 DatasetChanges& WithGroundTruth(GroundTruthT&& value) {
58 SetGroundTruth(std::forward<GroundTruthT>(value));
59 return *this;
60 }
62 private:
63 Aws::Utils::ByteBuffer m_groundTruth{};
64 bool m_groundTruthHasBeenSet = false;
65};
66
67} // namespace Model
68} // namespace Rekognition
69} // namespace Aws
AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const
void SetGroundTruth(GroundTruthT &&value)
DatasetChanges & WithGroundTruth(GroundTruthT &&value)
AWS_REKOGNITION_API DatasetChanges & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_REKOGNITION_API DatasetChanges()=default
const Aws::Utils::ByteBuffer & GetGroundTruth() const
AWS_REKOGNITION_API DatasetChanges(Aws::Utils::Json::JsonView jsonValue)
Aws::Utils::Json::JsonValue JsonValue