/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The output from the DescribeEndpoint operation.See Also:
AWS
* API Reference
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;} 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: Aws::String m_endpointAddress; Aws::String m_requestId; }; } // namespace Model } // namespace IoT } // namespace Aws