/** * 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 UpdateFirewallRuleGroupAssociationResult { public: AWS_ROUTE53RESOLVER_API UpdateFirewallRuleGroupAssociationResult(); AWS_ROUTE53RESOLVER_API UpdateFirewallRuleGroupAssociationResult(const Aws::AmazonWebServiceResult& result); AWS_ROUTE53RESOLVER_API UpdateFirewallRuleGroupAssociationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The association that you just updated.

*/ inline const FirewallRuleGroupAssociation& GetFirewallRuleGroupAssociation() const{ return m_firewallRuleGroupAssociation; } /** *

The association that you just updated.

*/ inline void SetFirewallRuleGroupAssociation(const FirewallRuleGroupAssociation& value) { m_firewallRuleGroupAssociation = value; } /** *

The association that you just updated.

*/ inline void SetFirewallRuleGroupAssociation(FirewallRuleGroupAssociation&& value) { m_firewallRuleGroupAssociation = std::move(value); } /** *

The association that you just updated.

*/ inline UpdateFirewallRuleGroupAssociationResult& WithFirewallRuleGroupAssociation(const FirewallRuleGroupAssociation& value) { SetFirewallRuleGroupAssociation(value); return *this;} /** *

The association that you just updated.

*/ inline UpdateFirewallRuleGroupAssociationResult& WithFirewallRuleGroupAssociation(FirewallRuleGroupAssociation&& value) { SetFirewallRuleGroupAssociation(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 UpdateFirewallRuleGroupAssociationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateFirewallRuleGroupAssociationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateFirewallRuleGroupAssociationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: FirewallRuleGroupAssociation m_firewallRuleGroupAssociation; Aws::String m_requestId; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws