/** * 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 Comprehend { namespace Model { class DescribeEndpointResult { public: AWS_COMPREHEND_API DescribeEndpointResult(); AWS_COMPREHEND_API DescribeEndpointResult(const Aws::AmazonWebServiceResult& result); AWS_COMPREHEND_API DescribeEndpointResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Describes information associated with the specific endpoint.

*/ inline const EndpointProperties& GetEndpointProperties() const{ return m_endpointProperties; } /** *

Describes information associated with the specific endpoint.

*/ inline void SetEndpointProperties(const EndpointProperties& value) { m_endpointProperties = value; } /** *

Describes information associated with the specific endpoint.

*/ inline void SetEndpointProperties(EndpointProperties&& value) { m_endpointProperties = std::move(value); } /** *

Describes information associated with the specific endpoint.

*/ inline DescribeEndpointResult& WithEndpointProperties(const EndpointProperties& value) { SetEndpointProperties(value); return *this;} /** *

Describes information associated with the specific endpoint.

*/ inline DescribeEndpointResult& WithEndpointProperties(EndpointProperties&& value) { SetEndpointProperties(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 DescribeEndpointResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeEndpointResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeEndpointResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: EndpointProperties m_endpointProperties; Aws::String m_requestId; }; } // namespace Model } // namespace Comprehend } // namespace Aws