/** * 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 IoT { namespace Model { /** *

The output from the DescribeEndpoint operation.

See Also:

AWS * API Reference

*/ class AWS_IOT_API DescribeEndpointResult { public: DescribeEndpointResult(); DescribeEndpointResult(const Aws::AmazonWebServiceResult& result); DescribeEndpointResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The endpoint. The format of the endpoint is as follows: * identifier.iot.region.amazonaws.com.

*/ inline const Aws::String& GetEndpointAddress() const{ return m_endpointAddress; } /** *

The endpoint. The format of the endpoint is as follows: * identifier.iot.region.amazonaws.com.

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

The endpoint. The format of the endpoint is as follows: * identifier.iot.region.amazonaws.com.

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

The endpoint. The format of the endpoint is as follows: * identifier.iot.region.amazonaws.com.

*/ inline void SetEndpointAddress(const char* value) { m_endpointAddress.assign(value); } /** *

The endpoint. The format of the endpoint is as follows: * identifier.iot.region.amazonaws.com.

*/ inline DescribeEndpointResult& WithEndpointAddress(const Aws::String& value) { SetEndpointAddress(value); return *this;} /** *

The endpoint. The format of the endpoint is as follows: * identifier.iot.region.amazonaws.com.

*/ inline DescribeEndpointResult& WithEndpointAddress(Aws::String&& value) { SetEndpointAddress(std::move(value)); return *this;} /** *

The endpoint. The format of the endpoint is as follows: * identifier.iot.region.amazonaws.com.

*/ inline DescribeEndpointResult& WithEndpointAddress(const char* value) { SetEndpointAddress(value); return *this;} private: Aws::String m_endpointAddress; }; } // namespace Model } // namespace IoT } // namespace Aws