AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ProcessorParameter.h
1
6#pragma once
7#include <aws/firehose/Firehose_EXPORTS.h>
8#include <aws/firehose/model/ProcessorParameterName.h>
9#include <aws/core/utils/memory/stl/AWSString.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 Firehose
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_FIREHOSE_API ProcessorParameter();
38 AWS_FIREHOSE_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
50 inline const ProcessorParameterName& GetParameterName() const{ return m_parameterName; }
51 inline bool ParameterNameHasBeenSet() const { return m_parameterNameHasBeenSet; }
52 inline void SetParameterName(const ProcessorParameterName& value) { m_parameterNameHasBeenSet = true; m_parameterName = value; }
53 inline void SetParameterName(ProcessorParameterName&& value) { m_parameterNameHasBeenSet = true; m_parameterName = std::move(value); }
54 inline ProcessorParameter& WithParameterName(const ProcessorParameterName& value) { SetParameterName(value); return *this;}
55 inline ProcessorParameter& WithParameterName(ProcessorParameterName&& value) { SetParameterName(std::move(value)); return *this;}
57
59
62 inline const Aws::String& GetParameterValue() const{ return m_parameterValue; }
63 inline bool ParameterValueHasBeenSet() const { return m_parameterValueHasBeenSet; }
64 inline void SetParameterValue(const Aws::String& value) { m_parameterValueHasBeenSet = true; m_parameterValue = value; }
65 inline void SetParameterValue(Aws::String&& value) { m_parameterValueHasBeenSet = true; m_parameterValue = std::move(value); }
66 inline void SetParameterValue(const char* value) { m_parameterValueHasBeenSet = true; m_parameterValue.assign(value); }
67 inline ProcessorParameter& WithParameterValue(const Aws::String& value) { SetParameterValue(value); return *this;}
68 inline ProcessorParameter& WithParameterValue(Aws::String&& value) { SetParameterValue(std::move(value)); return *this;}
69 inline ProcessorParameter& WithParameterValue(const char* value) { SetParameterValue(value); return *this;}
71 private:
72
73 ProcessorParameterName m_parameterName;
74 bool m_parameterNameHasBeenSet = false;
75
76 Aws::String m_parameterValue;
77 bool m_parameterValueHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace Firehose
82} // namespace Aws
AWS_FIREHOSE_API ProcessorParameter(Aws::Utils::Json::JsonView jsonValue)
void SetParameterName(const ProcessorParameterName &value)
const Aws::String & GetParameterValue() const
void SetParameterValue(const Aws::String &value)
AWS_FIREHOSE_API ProcessorParameter & operator=(Aws::Utils::Json::JsonView jsonValue)
const ProcessorParameterName & GetParameterName() const
void SetParameterName(ProcessorParameterName &&value)
ProcessorParameter & WithParameterValue(const Aws::String &value)
AWS_FIREHOSE_API Aws::Utils::Json::JsonValue Jsonize() const
ProcessorParameter & WithParameterName(const ProcessorParameterName &value)
ProcessorParameter & WithParameterValue(Aws::String &&value)
ProcessorParameter & WithParameterName(ProcessorParameterName &&value)
ProcessorParameter & WithParameterValue(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue