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

Information about the AssociateResolverRule request, including * the status of the request.

*/ inline const ResolverRuleAssociation& GetResolverRuleAssociation() const{ return m_resolverRuleAssociation; } /** *

Information about the AssociateResolverRule request, including * the status of the request.

*/ inline void SetResolverRuleAssociation(const ResolverRuleAssociation& value) { m_resolverRuleAssociation = value; } /** *

Information about the AssociateResolverRule request, including * the status of the request.

*/ inline void SetResolverRuleAssociation(ResolverRuleAssociation&& value) { m_resolverRuleAssociation = std::move(value); } /** *

Information about the AssociateResolverRule request, including * the status of the request.

*/ inline AssociateResolverRuleResult& WithResolverRuleAssociation(const ResolverRuleAssociation& value) { SetResolverRuleAssociation(value); return *this;} /** *

Information about the AssociateResolverRule request, including * the status of the request.

*/ inline AssociateResolverRuleResult& WithResolverRuleAssociation(ResolverRuleAssociation&& value) { SetResolverRuleAssociation(std::move(value)); return *this;} private: ResolverRuleAssociation m_resolverRuleAssociation; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws