AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
DescribeLoggingConfigurationResult.h
Go to the documentation of this file.
1
6#pragma once
10#include <utility>
11
12namespace Aws
13{
14template<typename RESULT_TYPE>
15class AmazonWebServiceResult;
16
17namespace Utils
18{
19namespace Json
20{
21 class JsonValue;
22} // namespace Json
23} // namespace Utils
24namespace NetworkFirewall
25{
26namespace Model
27{
29 {
30 public:
34
35
39 inline const Aws::String& GetFirewallArn() const{ return m_firewallArn; }
40
44 inline void SetFirewallArn(const Aws::String& value) { m_firewallArn = value; }
45
49 inline void SetFirewallArn(Aws::String&& value) { m_firewallArn = std::move(value); }
50
54 inline void SetFirewallArn(const char* value) { m_firewallArn.assign(value); }
55
60
64 inline DescribeLoggingConfigurationResult& WithFirewallArn(Aws::String&& value) { SetFirewallArn(std::move(value)); return *this;}
65
69 inline DescribeLoggingConfigurationResult& WithFirewallArn(const char* value) { SetFirewallArn(value); return *this;}
70
71
72
73 inline const LoggingConfiguration& GetLoggingConfiguration() const{ return m_loggingConfiguration; }
74
75
76 inline void SetLoggingConfiguration(const LoggingConfiguration& value) { m_loggingConfiguration = value; }
77
78
79 inline void SetLoggingConfiguration(LoggingConfiguration&& value) { m_loggingConfiguration = std::move(value); }
80
81
83
84
86
87 private:
88
89 Aws::String m_firewallArn;
90
91 LoggingConfiguration m_loggingConfiguration;
92 };
93
94} // namespace Model
95} // namespace NetworkFirewall
96} // namespace Aws
#define AWS_NETWORKFIREWALL_API
DescribeLoggingConfigurationResult & WithFirewallArn(const Aws::String &value)
DescribeLoggingConfigurationResult & WithLoggingConfiguration(const LoggingConfiguration &value)
DescribeLoggingConfigurationResult & WithFirewallArn(Aws::String &&value)
AWS_NETWORKFIREWALL_API DescribeLoggingConfigurationResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeLoggingConfigurationResult & WithFirewallArn(const char *value)
DescribeLoggingConfigurationResult & WithLoggingConfiguration(LoggingConfiguration &&value)
AWS_NETWORKFIREWALL_API DescribeLoggingConfigurationResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String