AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
DescribeLoggingConfigurationRequest.h
Go to the documentation of this file.
1
6#pragma once
10#include <utility>
11
12namespace Aws
13{
14namespace NetworkFirewall
15{
16namespace Model
17{
18
22 {
23 public:
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 "DescribeLoggingConfiguration"; }
31
33
35
36
41 inline const Aws::String& GetFirewallArn() const{ return m_firewallArn; }
42
47 inline bool FirewallArnHasBeenSet() const { return m_firewallArnHasBeenSet; }
48
53 inline void SetFirewallArn(const Aws::String& value) { m_firewallArnHasBeenSet = true; m_firewallArn = value; }
54
59 inline void SetFirewallArn(Aws::String&& value) { m_firewallArnHasBeenSet = true; m_firewallArn = std::move(value); }
60
65 inline void SetFirewallArn(const char* value) { m_firewallArnHasBeenSet = true; m_firewallArn.assign(value); }
66
72
77 inline DescribeLoggingConfigurationRequest& WithFirewallArn(Aws::String&& value) { SetFirewallArn(std::move(value)); return *this;}
78
83 inline DescribeLoggingConfigurationRequest& WithFirewallArn(const char* value) { SetFirewallArn(value); return *this;}
84
85
91 inline const Aws::String& GetFirewallName() const{ return m_firewallName; }
92
98 inline bool FirewallNameHasBeenSet() const { return m_firewallNameHasBeenSet; }
99
105 inline void SetFirewallName(const Aws::String& value) { m_firewallNameHasBeenSet = true; m_firewallName = value; }
106
112 inline void SetFirewallName(Aws::String&& value) { m_firewallNameHasBeenSet = true; m_firewallName = std::move(value); }
113
119 inline void SetFirewallName(const char* value) { m_firewallNameHasBeenSet = true; m_firewallName.assign(value); }
120
127
133 inline DescribeLoggingConfigurationRequest& WithFirewallName(Aws::String&& value) { SetFirewallName(std::move(value)); return *this;}
134
140 inline DescribeLoggingConfigurationRequest& WithFirewallName(const char* value) { SetFirewallName(value); return *this;}
141
142 private:
143
144 Aws::String m_firewallArn;
145 bool m_firewallArnHasBeenSet = false;
146
147 Aws::String m_firewallName;
148 bool m_firewallNameHasBeenSet = false;
149 };
150
151} // namespace Model
152} // namespace NetworkFirewall
153} // namespace Aws
#define AWS_NETWORKFIREWALL_API
DescribeLoggingConfigurationRequest & WithFirewallName(const Aws::String &value)
DescribeLoggingConfigurationRequest & WithFirewallArn(const Aws::String &value)
DescribeLoggingConfigurationRequest & WithFirewallName(Aws::String &&value)
AWS_NETWORKFIREWALL_API Aws::String SerializePayload() const override
DescribeLoggingConfigurationRequest & WithFirewallArn(Aws::String &&value)
DescribeLoggingConfigurationRequest & WithFirewallArn(const char *value)
DescribeLoggingConfigurationRequest & WithFirewallName(const char *value)
AWS_NETWORKFIREWALL_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