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

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

*/ inline const ResolverEndpoint& GetResolverEndpoint() const{ return m_resolverEndpoint; } /** *

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

*/ inline void SetResolverEndpoint(const ResolverEndpoint& value) { m_resolverEndpoint = value; } /** *

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

*/ inline void SetResolverEndpoint(ResolverEndpoint&& value) { m_resolverEndpoint = std::move(value); } /** *

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

*/ inline CreateResolverEndpointResult& WithResolverEndpoint(const ResolverEndpoint& value) { SetResolverEndpoint(value); return *this;} /** *

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

*/ inline CreateResolverEndpointResult& WithResolverEndpoint(ResolverEndpoint&& value) { SetResolverEndpoint(std::move(value)); return *this;} private: ResolverEndpoint m_resolverEndpoint; }; } // namespace Model } // namespace Route53Resolver } // namespace Aws