/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Route53Resolver { namespace Model { class GetFirewallConfigResult { public: AWS_ROUTE53RESOLVER_API GetFirewallConfigResult(); AWS_ROUTE53RESOLVER_API GetFirewallConfigResult(const Aws::AmazonWebServiceResult& result); AWS_ROUTE53RESOLVER_API GetFirewallConfigResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Configuration of the firewall behavior provided by DNS Firewall for a single * VPC from AmazonVPC.

*/ inline const FirewallConfig& GetFirewallConfig() const{ return m_firewallConfig; } /** *

Configuration of the firewall behavior provided by DNS Firewall for a single * VPC from AmazonVPC.

*/ inline void SetFirewallConfig(const FirewallConfig& value) { m_firewallConfig = value; } /** *

Configuration of the firewall behavior provided by DNS Firewall for a single * VPC from AmazonVPC.

*/ inline void SetFirewallConfig(FirewallConfig&& value) { m_firewallConfig = std::move(value); } /** *

Configuration of the firewall behavior provided by DNS Firewall for a single * VPC from AmazonVPC.

*/ inline GetFirewallConfigResult& WithFirewallConfig(const FirewallConfig& value) { SetFirewallConfig(value); return *this;} /** *

Configuration of the firewall behavior provided by DNS Firewall for a single * VPC from AmazonVPC.

*/ inline GetFirewallConfigResult& WithFirewallConfig(FirewallConfig&& value) { SetFirewallConfig(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetFirewallConfigResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetFirewallConfigResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetFirewallConfigResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: FirewallConfig m_firewallConfig; Aws::String m_requestId; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws