/** * 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 PrivateNetworks { namespace Model { class DeactivateDeviceIdentifierResult { public: AWS_PRIVATENETWORKS_API DeactivateDeviceIdentifierResult(); AWS_PRIVATENETWORKS_API DeactivateDeviceIdentifierResult(const Aws::AmazonWebServiceResult& result); AWS_PRIVATENETWORKS_API DeactivateDeviceIdentifierResult& 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 DeactivateDeviceIdentifierResult& WithDeviceIdentifier(const DeviceIdentifier& value) { SetDeviceIdentifier(value); return *this;} /** *

Information about the device identifier.

*/ inline DeactivateDeviceIdentifierResult& WithDeviceIdentifier(DeviceIdentifier&& value) { SetDeviceIdentifier(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 DeactivateDeviceIdentifierResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeactivateDeviceIdentifierResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeactivateDeviceIdentifierResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: DeviceIdentifier m_deviceIdentifier; Aws::String m_requestId; }; } // namespace Model } // namespace PrivateNetworks } // namespace Aws