AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
Asset.h
1
6#pragma once
7#include <aws/rekognition/Rekognition_EXPORTS.h>
8#include <aws/rekognition/model/GroundTruthManifest.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Rekognition
22{
23namespace Model
24{
25
33 class Asset
34 {
35 public:
36 AWS_REKOGNITION_API Asset() = default;
37 AWS_REKOGNITION_API Asset(Aws::Utils::Json::JsonView jsonValue);
38 AWS_REKOGNITION_API Asset& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
44 inline const GroundTruthManifest& GetGroundTruthManifest() const { return m_groundTruthManifest; }
45 inline bool GroundTruthManifestHasBeenSet() const { return m_groundTruthManifestHasBeenSet; }
46 template<typename GroundTruthManifestT = GroundTruthManifest>
47 void SetGroundTruthManifest(GroundTruthManifestT&& value) { m_groundTruthManifestHasBeenSet = true; m_groundTruthManifest = std::forward<GroundTruthManifestT>(value); }
48 template<typename GroundTruthManifestT = GroundTruthManifest>
49 Asset& WithGroundTruthManifest(GroundTruthManifestT&& value) { SetGroundTruthManifest(std::forward<GroundTruthManifestT>(value)); return *this;}
51 private:
52
53 GroundTruthManifest m_groundTruthManifest;
54 bool m_groundTruthManifestHasBeenSet = false;
55 };
56
57} // namespace Model
58} // namespace Rekognition
59} // namespace Aws
bool GroundTruthManifestHasBeenSet() const
Definition Asset.h:45
const GroundTruthManifest & GetGroundTruthManifest() const
Definition Asset.h:44
void SetGroundTruthManifest(GroundTruthManifestT &&value)
Definition Asset.h:47
AWS_REKOGNITION_API Asset()=default
AWS_REKOGNITION_API Asset & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_REKOGNITION_API Asset(Aws::Utils::Json::JsonView jsonValue)
Asset & WithGroundTruthManifest(GroundTruthManifestT &&value)
Definition Asset.h:49
Aws::Utils::Json::JsonValue JsonValue