AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
PutLoggingConfigurationRequest.h
1
6#pragma once
7#include <aws/waf/WAF_EXPORTS.h>
8#include <aws/waf/WAFRequest.h>
9#include <aws/waf/model/LoggingConfiguration.h>
10#include <utility>
11
12namespace Aws
13{
14namespace WAF
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_WAF_API PutLoggingConfigurationRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "PutLoggingConfiguration"; }
31
32 AWS_WAF_API Aws::String SerializePayload() const override;
33
35
36
38
46 inline const LoggingConfiguration& GetLoggingConfiguration() const { return m_loggingConfiguration; }
47 inline bool LoggingConfigurationHasBeenSet() const { return m_loggingConfigurationHasBeenSet; }
48 template<typename LoggingConfigurationT = LoggingConfiguration>
49 void SetLoggingConfiguration(LoggingConfigurationT&& value) { m_loggingConfigurationHasBeenSet = true; m_loggingConfiguration = std::forward<LoggingConfigurationT>(value); }
50 template<typename LoggingConfigurationT = LoggingConfiguration>
51 PutLoggingConfigurationRequest& WithLoggingConfiguration(LoggingConfigurationT&& value) { SetLoggingConfiguration(std::forward<LoggingConfigurationT>(value)); return *this;}
53 private:
54
55 LoggingConfiguration m_loggingConfiguration;
56 bool m_loggingConfigurationHasBeenSet = false;
57 };
58
59} // namespace Model
60} // namespace WAF
61} // namespace Aws
PutLoggingConfigurationRequest & WithLoggingConfiguration(LoggingConfigurationT &&value)
AWS_WAF_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
AWS_WAF_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String