AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
TechnicalCueSegment.h
1
6#pragma once
7#include <aws/rekognition/Rekognition_EXPORTS.h>
8#include <aws/rekognition/model/TechnicalCueType.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 {
34 public:
35 AWS_REKOGNITION_API TechnicalCueSegment();
36 AWS_REKOGNITION_API TechnicalCueSegment(Aws::Utils::Json::JsonView jsonValue);
38 AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const TechnicalCueType& GetType() const{ return m_type; }
46 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
47 inline void SetType(const TechnicalCueType& value) { m_typeHasBeenSet = true; m_type = value; }
48 inline void SetType(TechnicalCueType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
49 inline TechnicalCueSegment& WithType(const TechnicalCueType& value) { SetType(value); return *this;}
50 inline TechnicalCueSegment& WithType(TechnicalCueType&& value) { SetType(std::move(value)); return *this;}
52
54
58 inline double GetConfidence() const{ return m_confidence; }
59 inline bool ConfidenceHasBeenSet() const { return m_confidenceHasBeenSet; }
60 inline void SetConfidence(double value) { m_confidenceHasBeenSet = true; m_confidence = value; }
61 inline TechnicalCueSegment& WithConfidence(double value) { SetConfidence(value); return *this;}
63 private:
64
65 TechnicalCueType m_type;
66 bool m_typeHasBeenSet = false;
67
68 double m_confidence;
69 bool m_confidenceHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace Rekognition
74} // namespace Aws
AWS_REKOGNITION_API TechnicalCueSegment(Aws::Utils::Json::JsonView jsonValue)
void SetType(const TechnicalCueType &value)
TechnicalCueSegment & WithType(TechnicalCueType &&value)
TechnicalCueSegment & WithType(const TechnicalCueType &value)
TechnicalCueSegment & WithConfidence(double value)
AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_REKOGNITION_API TechnicalCueSegment & operator=(Aws::Utils::Json::JsonView jsonValue)
Aws::Utils::Json::JsonValue JsonValue