AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateXMLClassifierRequest.h
1
6#pragma once
7#include <aws/glue/Glue_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 Glue
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_GLUE_API UpdateXMLClassifierRequest() = default;
38
39
41
44 inline const Aws::String& GetName() const { return m_name; }
45 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
46 template<typename NameT = Aws::String>
47 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
48 template<typename NameT = Aws::String>
49 UpdateXMLClassifierRequest& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
51
53
56 inline const Aws::String& GetClassification() const { return m_classification; }
57 inline bool ClassificationHasBeenSet() const { return m_classificationHasBeenSet; }
58 template<typename ClassificationT = Aws::String>
59 void SetClassification(ClassificationT&& value) { m_classificationHasBeenSet = true; m_classification = std::forward<ClassificationT>(value); }
60 template<typename ClassificationT = Aws::String>
61 UpdateXMLClassifierRequest& WithClassification(ClassificationT&& value) { SetClassification(std::forward<ClassificationT>(value)); return *this;}
63
65
73 inline const Aws::String& GetRowTag() const { return m_rowTag; }
74 inline bool RowTagHasBeenSet() const { return m_rowTagHasBeenSet; }
75 template<typename RowTagT = Aws::String>
76 void SetRowTag(RowTagT&& value) { m_rowTagHasBeenSet = true; m_rowTag = std::forward<RowTagT>(value); }
77 template<typename RowTagT = Aws::String>
78 UpdateXMLClassifierRequest& WithRowTag(RowTagT&& value) { SetRowTag(std::forward<RowTagT>(value)); return *this;}
80 private:
81
82 Aws::String m_name;
83 bool m_nameHasBeenSet = false;
84
85 Aws::String m_classification;
86 bool m_classificationHasBeenSet = false;
87
88 Aws::String m_rowTag;
89 bool m_rowTagHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace Glue
94} // namespace Aws
UpdateXMLClassifierRequest & WithClassification(ClassificationT &&value)
AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_GLUE_API UpdateXMLClassifierRequest(Aws::Utils::Json::JsonView jsonValue)
UpdateXMLClassifierRequest & WithName(NameT &&value)
AWS_GLUE_API UpdateXMLClassifierRequest & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_GLUE_API UpdateXMLClassifierRequest()=default
UpdateXMLClassifierRequest & WithRowTag(RowTagT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue