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

If objects are still available for retrieval, Resolver returns this token in * the response. To retrieve the next batch of objects, provide this token in your * next request.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

If objects are still available for retrieval, Resolver returns this token in * the response. To retrieve the next batch of objects, provide this token in your * next request.

*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *

If objects are still available for retrieval, Resolver returns this token in * the response. To retrieve the next batch of objects, provide this token in your * next request.

*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *

If objects are still available for retrieval, Resolver returns this token in * the response. To retrieve the next batch of objects, provide this token in your * next request.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

If objects are still available for retrieval, Resolver returns this token in * the response. To retrieve the next batch of objects, provide this token in your * next request.

*/ inline ListFirewallConfigsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

If objects are still available for retrieval, Resolver returns this token in * the response. To retrieve the next batch of objects, provide this token in your * next request.

*/ inline ListFirewallConfigsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

If objects are still available for retrieval, Resolver returns this token in * the response. To retrieve the next batch of objects, provide this token in your * next request.

*/ inline ListFirewallConfigsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

The configurations for the firewall behavior provided by DNS Firewall for * VPCs from Amazon Virtual Private Cloud (Amazon VPC).

*/ inline const Aws::Vector& GetFirewallConfigs() const{ return m_firewallConfigs; } /** *

The configurations for the firewall behavior provided by DNS Firewall for * VPCs from Amazon Virtual Private Cloud (Amazon VPC).

*/ inline void SetFirewallConfigs(const Aws::Vector& value) { m_firewallConfigs = value; } /** *

The configurations for the firewall behavior provided by DNS Firewall for * VPCs from Amazon Virtual Private Cloud (Amazon VPC).

*/ inline void SetFirewallConfigs(Aws::Vector&& value) { m_firewallConfigs = std::move(value); } /** *

The configurations for the firewall behavior provided by DNS Firewall for * VPCs from Amazon Virtual Private Cloud (Amazon VPC).

*/ inline ListFirewallConfigsResult& WithFirewallConfigs(const Aws::Vector& value) { SetFirewallConfigs(value); return *this;} /** *

The configurations for the firewall behavior provided by DNS Firewall for * VPCs from Amazon Virtual Private Cloud (Amazon VPC).

*/ inline ListFirewallConfigsResult& WithFirewallConfigs(Aws::Vector&& value) { SetFirewallConfigs(std::move(value)); return *this;} /** *

The configurations for the firewall behavior provided by DNS Firewall for * VPCs from Amazon Virtual Private Cloud (Amazon VPC).

*/ inline ListFirewallConfigsResult& AddFirewallConfigs(const FirewallConfig& value) { m_firewallConfigs.push_back(value); return *this; } /** *

The configurations for the firewall behavior provided by DNS Firewall for * VPCs from Amazon Virtual Private Cloud (Amazon VPC).

*/ inline ListFirewallConfigsResult& AddFirewallConfigs(FirewallConfig&& value) { m_firewallConfigs.push_back(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 ListFirewallConfigsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListFirewallConfigsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListFirewallConfigsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_nextToken; Aws::Vector m_firewallConfigs; Aws::String m_requestId; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws