/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace PrivateNetworks { namespace Model { class GetDeviceIdentifierResult { public: AWS_PRIVATENETWORKS_API GetDeviceIdentifierResult(); AWS_PRIVATENETWORKS_API GetDeviceIdentifierResult(const Aws::AmazonWebServiceResult& result); AWS_PRIVATENETWORKS_API GetDeviceIdentifierResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the device identifier.

*/ inline const DeviceIdentifier& GetDeviceIdentifier() const{ return m_deviceIdentifier; } /** *

Information about the device identifier.

*/ inline void SetDeviceIdentifier(const DeviceIdentifier& value) { m_deviceIdentifier = value; } /** *

Information about the device identifier.

*/ inline void SetDeviceIdentifier(DeviceIdentifier&& value) { m_deviceIdentifier = std::move(value); } /** *

Information about the device identifier.

*/ inline GetDeviceIdentifierResult& WithDeviceIdentifier(const DeviceIdentifier& value) { SetDeviceIdentifier(value); return *this;} /** *

Information about the device identifier.

*/ inline GetDeviceIdentifierResult& WithDeviceIdentifier(DeviceIdentifier&& value) { SetDeviceIdentifier(std::move(value)); return *this;} /** *

The device identifier tags.

*/ inline const Aws::Map& GetTags() const{ return m_tags; } /** *

The device identifier tags.

*/ inline void SetTags(const Aws::Map& value) { m_tags = value; } /** *

The device identifier tags.

*/ inline void SetTags(Aws::Map&& value) { m_tags = std::move(value); } /** *

The device identifier tags.

*/ inline GetDeviceIdentifierResult& WithTags(const Aws::Map& value) { SetTags(value); return *this;} /** *

The device identifier tags.

*/ inline GetDeviceIdentifierResult& WithTags(Aws::Map&& value) { SetTags(std::move(value)); return *this;} /** *

The device identifier tags.

*/ inline GetDeviceIdentifierResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; } /** *

The device identifier tags.

*/ inline GetDeviceIdentifierResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; } /** *

The device identifier tags.

*/ inline GetDeviceIdentifierResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; } /** *

The device identifier tags.

*/ inline GetDeviceIdentifierResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *

The device identifier tags.

*/ inline GetDeviceIdentifierResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; } /** *

The device identifier tags.

*/ inline GetDeviceIdentifierResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; } /** *

The device identifier tags.

*/ inline GetDeviceIdentifierResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, 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 GetDeviceIdentifierResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetDeviceIdentifierResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetDeviceIdentifierResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: DeviceIdentifier m_deviceIdentifier; Aws::Map m_tags; Aws::String m_requestId; }; } // namespace Model } // namespace PrivateNetworks } // namespace Aws