AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateQueryLoggingConfigResult.h
1
6#pragma once
7#include <aws/route53/Route53_EXPORTS.h>
8#include <aws/route53/model/QueryLoggingConfig.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14template<typename RESULT_TYPE>
15class AmazonWebServiceResult;
16
17namespace Utils
18{
19namespace Xml
20{
21 class XmlDocument;
22} // namespace Xml
23} // namespace Utils
24namespace Route53
25{
26namespace Model
27{
29 {
30 public:
34
35
37
42 inline const QueryLoggingConfig& GetQueryLoggingConfig() const{ return m_queryLoggingConfig; }
43 inline void SetQueryLoggingConfig(const QueryLoggingConfig& value) { m_queryLoggingConfig = value; }
44 inline void SetQueryLoggingConfig(QueryLoggingConfig&& value) { m_queryLoggingConfig = std::move(value); }
48
50
53 inline const Aws::String& GetLocation() const{ return m_location; }
54 inline void SetLocation(const Aws::String& value) { m_location = value; }
55 inline void SetLocation(Aws::String&& value) { m_location = std::move(value); }
56 inline void SetLocation(const char* value) { m_location.assign(value); }
57 inline CreateQueryLoggingConfigResult& WithLocation(const Aws::String& value) { SetLocation(value); return *this;}
58 inline CreateQueryLoggingConfigResult& WithLocation(Aws::String&& value) { SetLocation(std::move(value)); return *this;}
59 inline CreateQueryLoggingConfigResult& WithLocation(const char* value) { SetLocation(value); return *this;}
61
63
64 inline const Aws::String& GetRequestId() const{ return m_requestId; }
65 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
66 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
67 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
68 inline CreateQueryLoggingConfigResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
69 inline CreateQueryLoggingConfigResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
70 inline CreateQueryLoggingConfigResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
72 private:
73
74 QueryLoggingConfig m_queryLoggingConfig;
75
76 Aws::String m_location;
77
78 Aws::String m_requestId;
79 };
80
81} // namespace Model
82} // namespace Route53
83} // namespace Aws
CreateQueryLoggingConfigResult & WithLocation(const char *value)
CreateQueryLoggingConfigResult & WithQueryLoggingConfig(const QueryLoggingConfig &value)
AWS_ROUTE53_API CreateQueryLoggingConfigResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
CreateQueryLoggingConfigResult & WithRequestId(const char *value)
CreateQueryLoggingConfigResult & WithLocation(Aws::String &&value)
CreateQueryLoggingConfigResult & WithQueryLoggingConfig(QueryLoggingConfig &&value)
CreateQueryLoggingConfigResult & WithLocation(const Aws::String &value)
CreateQueryLoggingConfigResult & WithRequestId(const Aws::String &value)
CreateQueryLoggingConfigResult & WithRequestId(Aws::String &&value)
AWS_ROUTE53_API CreateQueryLoggingConfigResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Xml::XmlDocument XmlDocument