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

Information about the resolver rule policy that you specified in a * GetResolverRulePolicy request.

*/ inline const Aws::String& GetResolverRulePolicy() const{ return m_resolverRulePolicy; } /** *

Information about the resolver rule policy that you specified in a * GetResolverRulePolicy request.

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

Information about the resolver rule policy that you specified in a * GetResolverRulePolicy request.

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

Information about the resolver rule policy that you specified in a * GetResolverRulePolicy request.

*/ inline void SetResolverRulePolicy(const char* value) { m_resolverRulePolicy.assign(value); } /** *

Information about the resolver rule policy that you specified in a * GetResolverRulePolicy request.

*/ inline GetResolverRulePolicyResult& WithResolverRulePolicy(const Aws::String& value) { SetResolverRulePolicy(value); return *this;} /** *

Information about the resolver rule policy that you specified in a * GetResolverRulePolicy request.

*/ inline GetResolverRulePolicyResult& WithResolverRulePolicy(Aws::String&& value) { SetResolverRulePolicy(std::move(value)); return *this;} /** *

Information about the resolver rule policy that you specified in a * GetResolverRulePolicy request.

*/ inline GetResolverRulePolicyResult& WithResolverRulePolicy(const char* value) { SetResolverRulePolicy(value); return *this;} private: Aws::String m_resolverRulePolicy; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws