This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-comprehend/include/aws/comprehend/model/DescribeEndpointResult.h

68 lines
1.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/comprehend/Comprehend_EXPORTS.h>
#include <aws/comprehend/model/EndpointProperties.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace Comprehend
{
namespace Model
{
class AWS_COMPREHEND_API DescribeEndpointResult
{
public:
DescribeEndpointResult();
DescribeEndpointResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeEndpointResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>Describes information associated with the specific endpoint.</p>
*/
inline const EndpointProperties& GetEndpointProperties() const{ return m_endpointProperties; }
/**
* <p>Describes information associated with the specific endpoint.</p>
*/
inline void SetEndpointProperties(const EndpointProperties& value) { m_endpointProperties = value; }
/**
* <p>Describes information associated with the specific endpoint.</p>
*/
inline void SetEndpointProperties(EndpointProperties&& value) { m_endpointProperties = std::move(value); }
/**
* <p>Describes information associated with the specific endpoint.</p>
*/
inline DescribeEndpointResult& WithEndpointProperties(const EndpointProperties& value) { SetEndpointProperties(value); return *this;}
/**
* <p>Describes information associated with the specific endpoint.</p>
*/
inline DescribeEndpointResult& WithEndpointProperties(EndpointProperties&& value) { SetEndpointProperties(std::move(value)); return *this;}
private:
EndpointProperties m_endpointProperties;
};
} // namespace Model
} // namespace Comprehend
} // namespace Aws