AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
JSONInput.h
1
6#pragma once
7#include <aws/s3-crt/S3Crt_EXPORTS.h>
8#include <aws/s3-crt/model/JSONType.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Xml
16{
17 class XmlNode;
18} // namespace Xml
19} // namespace Utils
20namespace S3Crt
21{
22namespace Model
23{
24
32 {
33 public:
34 AWS_S3CRT_API JSONInput();
35 AWS_S3CRT_API JSONInput(const Aws::Utils::Xml::XmlNode& xmlNode);
36 AWS_S3CRT_API JSONInput& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
37
38 AWS_S3CRT_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
39
40
42
45 inline const JSONType& GetType() const{ return m_type; }
46 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
47 inline void SetType(const JSONType& value) { m_typeHasBeenSet = true; m_type = value; }
48 inline void SetType(JSONType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
49 inline JSONInput& WithType(const JSONType& value) { SetType(value); return *this;}
50 inline JSONInput& WithType(JSONType&& value) { SetType(std::move(value)); return *this;}
52 private:
53
54 JSONType m_type;
55 bool m_typeHasBeenSet = false;
56 };
57
58} // namespace Model
59} // namespace S3Crt
60} // namespace Aws
const JSONType & GetType() const
Definition JSONInput.h:45
void SetType(JSONType &&value)
Definition JSONInput.h:48
JSONInput & WithType(JSONType &&value)
Definition JSONInput.h:50
AWS_S3CRT_API JSONInput(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_S3CRT_API JSONInput & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetType(const JSONType &value)
Definition JSONInput.h:47
AWS_S3CRT_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
JSONInput & WithType(const JSONType &value)
Definition JSONInput.h:49