AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
IotEventsDestinationConfiguration.h
1
6#pragma once
7#include <aws/iotanalytics/IoTAnalytics_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.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 IoTAnalytics
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_IOTANALYTICS_API IotEventsDestinationConfiguration();
38 AWS_IOTANALYTICS_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetInputName() const{ return m_inputName; }
46 inline bool InputNameHasBeenSet() const { return m_inputNameHasBeenSet; }
47 inline void SetInputName(const Aws::String& value) { m_inputNameHasBeenSet = true; m_inputName = value; }
48 inline void SetInputName(Aws::String&& value) { m_inputNameHasBeenSet = true; m_inputName = std::move(value); }
49 inline void SetInputName(const char* value) { m_inputNameHasBeenSet = true; m_inputName.assign(value); }
50 inline IotEventsDestinationConfiguration& WithInputName(const Aws::String& value) { SetInputName(value); return *this;}
51 inline IotEventsDestinationConfiguration& WithInputName(Aws::String&& value) { SetInputName(std::move(value)); return *this;}
52 inline IotEventsDestinationConfiguration& WithInputName(const char* value) { SetInputName(value); return *this;}
54
56
60 inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
61 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
62 inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; }
63 inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); }
64 inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); }
65 inline IotEventsDestinationConfiguration& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
66 inline IotEventsDestinationConfiguration& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
67 inline IotEventsDestinationConfiguration& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
69 private:
70
71 Aws::String m_inputName;
72 bool m_inputNameHasBeenSet = false;
73
74 Aws::String m_roleArn;
75 bool m_roleArnHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace IoTAnalytics
80} // namespace Aws
IotEventsDestinationConfiguration & WithInputName(Aws::String &&value)
IotEventsDestinationConfiguration & WithInputName(const Aws::String &value)
IotEventsDestinationConfiguration & WithInputName(const char *value)
IotEventsDestinationConfiguration & WithRoleArn(const Aws::String &value)
AWS_IOTANALYTICS_API IotEventsDestinationConfiguration(Aws::Utils::Json::JsonView jsonValue)
AWS_IOTANALYTICS_API Aws::Utils::Json::JsonValue Jsonize() const
IotEventsDestinationConfiguration & WithRoleArn(const char *value)
AWS_IOTANALYTICS_API IotEventsDestinationConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
IotEventsDestinationConfiguration & WithRoleArn(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue