/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Route53Resolver { namespace Model { /** */ class DeleteFirewallDomainListRequest : public Route53ResolverRequest { public: AWS_ROUTE53RESOLVER_API DeleteFirewallDomainListRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DeleteFirewallDomainList"; } AWS_ROUTE53RESOLVER_API Aws::String SerializePayload() const override; AWS_ROUTE53RESOLVER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ID of the domain list that you want to delete.

*/ inline const Aws::String& GetFirewallDomainListId() const{ return m_firewallDomainListId; } /** *

The ID of the domain list that you want to delete.

*/ inline bool FirewallDomainListIdHasBeenSet() const { return m_firewallDomainListIdHasBeenSet; } /** *

The ID of the domain list that you want to delete.

*/ inline void SetFirewallDomainListId(const Aws::String& value) { m_firewallDomainListIdHasBeenSet = true; m_firewallDomainListId = value; } /** *

The ID of the domain list that you want to delete.

*/ inline void SetFirewallDomainListId(Aws::String&& value) { m_firewallDomainListIdHasBeenSet = true; m_firewallDomainListId = std::move(value); } /** *

The ID of the domain list that you want to delete.

*/ inline void SetFirewallDomainListId(const char* value) { m_firewallDomainListIdHasBeenSet = true; m_firewallDomainListId.assign(value); } /** *

The ID of the domain list that you want to delete.

*/ inline DeleteFirewallDomainListRequest& WithFirewallDomainListId(const Aws::String& value) { SetFirewallDomainListId(value); return *this;} /** *

The ID of the domain list that you want to delete.

*/ inline DeleteFirewallDomainListRequest& WithFirewallDomainListId(Aws::String&& value) { SetFirewallDomainListId(std::move(value)); return *this;} /** *

The ID of the domain list that you want to delete.

*/ inline DeleteFirewallDomainListRequest& WithFirewallDomainListId(const char* value) { SetFirewallDomainListId(value); return *this;} private: Aws::String m_firewallDomainListId; bool m_firewallDomainListIdHasBeenSet = false; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws