AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StreamProcessor.h
1
6#pragma once
7#include <aws/rekognition/Rekognition_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/rekognition/model/StreamProcessorStatus.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace Rekognition
23{
24namespace Model
25{
26
38 {
39 public:
40 AWS_REKOGNITION_API StreamProcessor();
41 AWS_REKOGNITION_API StreamProcessor(Aws::Utils::Json::JsonView jsonValue);
42 AWS_REKOGNITION_API StreamProcessor& operator=(Aws::Utils::Json::JsonView jsonValue);
43 AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const;
44
45
47
50 inline const Aws::String& GetName() const{ return m_name; }
51 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
52 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
53 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
54 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
55 inline StreamProcessor& WithName(const Aws::String& value) { SetName(value); return *this;}
56 inline StreamProcessor& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
57 inline StreamProcessor& WithName(const char* value) { SetName(value); return *this;}
59
61
64 inline const StreamProcessorStatus& GetStatus() const{ return m_status; }
65 inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
66 inline void SetStatus(const StreamProcessorStatus& value) { m_statusHasBeenSet = true; m_status = value; }
67 inline void SetStatus(StreamProcessorStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); }
68 inline StreamProcessor& WithStatus(const StreamProcessorStatus& value) { SetStatus(value); return *this;}
69 inline StreamProcessor& WithStatus(StreamProcessorStatus&& value) { SetStatus(std::move(value)); return *this;}
71 private:
72
73 Aws::String m_name;
74 bool m_nameHasBeenSet = false;
75
76 StreamProcessorStatus m_status;
77 bool m_statusHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace Rekognition
82} // namespace Aws
AWS_REKOGNITION_API StreamProcessor & operator=(Aws::Utils::Json::JsonView jsonValue)
StreamProcessor & WithName(const char *value)
void SetName(const Aws::String &value)
StreamProcessor & WithName(Aws::String &&value)
StreamProcessor & WithName(const Aws::String &value)
AWS_REKOGNITION_API StreamProcessor(Aws::Utils::Json::JsonView jsonValue)
void SetStatus(StreamProcessorStatus &&value)
StreamProcessor & WithStatus(const StreamProcessorStatus &value)
void SetStatus(const StreamProcessorStatus &value)
const Aws::String & GetName() const
StreamProcessor & WithStatus(StreamProcessorStatus &&value)
const StreamProcessorStatus & GetStatus() const
AWS_REKOGNITION_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue