AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
TemplateParameterConfiguration.h
1
6#pragma once
7#include <aws/emr-containers/EMRContainers_EXPORTS.h>
8#include <aws/emr-containers/model/TemplateParameterDataType.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 EMRContainers
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_EMRCONTAINERS_API TemplateParameterConfiguration();
38 AWS_EMRCONTAINERS_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const TemplateParameterDataType& GetType() const{ return m_type; }
47 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
48 inline void SetType(const TemplateParameterDataType& value) { m_typeHasBeenSet = true; m_type = value; }
49 inline void SetType(TemplateParameterDataType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
50 inline TemplateParameterConfiguration& WithType(const TemplateParameterDataType& value) { SetType(value); return *this;}
51 inline TemplateParameterConfiguration& WithType(TemplateParameterDataType&& value) { SetType(std::move(value)); return *this;}
53
55
58 inline const Aws::String& GetDefaultValue() const{ return m_defaultValue; }
59 inline bool DefaultValueHasBeenSet() const { return m_defaultValueHasBeenSet; }
60 inline void SetDefaultValue(const Aws::String& value) { m_defaultValueHasBeenSet = true; m_defaultValue = value; }
61 inline void SetDefaultValue(Aws::String&& value) { m_defaultValueHasBeenSet = true; m_defaultValue = std::move(value); }
62 inline void SetDefaultValue(const char* value) { m_defaultValueHasBeenSet = true; m_defaultValue.assign(value); }
63 inline TemplateParameterConfiguration& WithDefaultValue(const Aws::String& value) { SetDefaultValue(value); return *this;}
64 inline TemplateParameterConfiguration& WithDefaultValue(Aws::String&& value) { SetDefaultValue(std::move(value)); return *this;}
65 inline TemplateParameterConfiguration& WithDefaultValue(const char* value) { SetDefaultValue(value); return *this;}
67 private:
68
70 bool m_typeHasBeenSet = false;
71
72 Aws::String m_defaultValue;
73 bool m_defaultValueHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace EMRContainers
78} // namespace Aws
TemplateParameterConfiguration & WithType(TemplateParameterDataType &&value)
AWS_EMRCONTAINERS_API Aws::Utils::Json::JsonValue Jsonize() const
TemplateParameterConfiguration & WithDefaultValue(Aws::String &&value)
TemplateParameterConfiguration & WithType(const TemplateParameterDataType &value)
AWS_EMRCONTAINERS_API TemplateParameterConfiguration(Aws::Utils::Json::JsonView jsonValue)
TemplateParameterConfiguration & WithDefaultValue(const char *value)
AWS_EMRCONTAINERS_API TemplateParameterConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
TemplateParameterConfiguration & WithDefaultValue(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue