AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
CreateXMLClassifierRequest.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
33 {
34 public:
35 AWS_GLUE_API CreateXMLClassifierRequest() = default;
39
40
42
45 inline const Aws::String& GetClassification() const { return m_classification; }
46 inline bool ClassificationHasBeenSet() const { return m_classificationHasBeenSet; }
47 template<typename ClassificationT = Aws::String>
48 void SetClassification(ClassificationT&& value) { m_classificationHasBeenSet = true; m_classification = std::forward<ClassificationT>(value); }
49 template<typename ClassificationT = Aws::String>
50 CreateXMLClassifierRequest& WithClassification(ClassificationT&& value) { SetClassification(std::forward<ClassificationT>(value)); return *this;}
52
54
57 inline const Aws::String& GetName() const { return m_name; }
58 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
59 template<typename NameT = Aws::String>
60 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
61 template<typename NameT = Aws::String>
62 CreateXMLClassifierRequest& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
64
66
74 inline const Aws::String& GetRowTag() const { return m_rowTag; }
75 inline bool RowTagHasBeenSet() const { return m_rowTagHasBeenSet; }
76 template<typename RowTagT = Aws::String>
77 void SetRowTag(RowTagT&& value) { m_rowTagHasBeenSet = true; m_rowTag = std::forward<RowTagT>(value); }
78 template<typename RowTagT = Aws::String>
79 CreateXMLClassifierRequest& WithRowTag(RowTagT&& value) { SetRowTag(std::forward<RowTagT>(value)); return *this;}
81 private:
82
83 Aws::String m_classification;
84 bool m_classificationHasBeenSet = false;
85
86 Aws::String m_name;
87 bool m_nameHasBeenSet = false;
88
89 Aws::String m_rowTag;
90 bool m_rowTagHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace Glue
95} // namespace Aws
CreateXMLClassifierRequest & WithName(NameT &&value)
CreateXMLClassifierRequest & WithRowTag(RowTagT &&value)
CreateXMLClassifierRequest & WithClassification(ClassificationT &&value)
AWS_GLUE_API CreateXMLClassifierRequest(Aws::Utils::Json::JsonView jsonValue)
AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_GLUE_API CreateXMLClassifierRequest()=default
AWS_GLUE_API CreateXMLClassifierRequest & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue