AWS SDK for C++

AWS SDK for C++ Version 1.11.752

Loading...
Searching...
No Matches
GetV2LoggingOptionsRequest.h
1
6#pragma once
7#include <aws/iot/IoTRequest.h>
8#include <aws/iot/IoT_EXPORTS.h>
9
10namespace Aws {
11namespace Http {
12class URI;
13} // namespace Http
14namespace IoT {
15namespace Model {
16
20 public:
21 AWS_IOT_API GetV2LoggingOptionsRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "GetV2LoggingOptions"; }
28
29 AWS_IOT_API Aws::String SerializePayload() const override;
30
31 AWS_IOT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
32
34
38 inline bool GetVerbose() const { return m_verbose; }
39 inline bool VerboseHasBeenSet() const { return m_verboseHasBeenSet; }
40 inline void SetVerbose(bool value) {
41 m_verboseHasBeenSet = true;
42 m_verbose = value;
43 }
45 SetVerbose(value);
46 return *this;
47 }
49 private:
50 bool m_verbose{false};
51 bool m_verboseHasBeenSet = false;
52};
53
54} // namespace Model
55} // namespace IoT
56} // namespace Aws
AWS_IOT_API Aws::String SerializePayload() const override
AWS_IOT_API GetV2LoggingOptionsRequest()=default
AWS_IOT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
virtual const char * GetServiceRequestName() const override
GetV2LoggingOptionsRequest & WithVerbose(bool value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String