/** * 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 NetworkManager { namespace Model { class DeleteLinkResult { public: AWS_NETWORKMANAGER_API DeleteLinkResult(); AWS_NETWORKMANAGER_API DeleteLinkResult(const Aws::AmazonWebServiceResult& result); AWS_NETWORKMANAGER_API DeleteLinkResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the link.

*/ inline const Link& GetLink() const{ return m_link; } /** *

Information about the link.

*/ inline void SetLink(const Link& value) { m_link = value; } /** *

Information about the link.

*/ inline void SetLink(Link&& value) { m_link = std::move(value); } /** *

Information about the link.

*/ inline DeleteLinkResult& WithLink(const Link& value) { SetLink(value); return *this;} /** *

Information about the link.

*/ inline DeleteLinkResult& WithLink(Link&& value) { SetLink(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 DeleteLinkResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeleteLinkResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeleteLinkResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Link m_link; Aws::String m_requestId; }; } // namespace Model } // namespace NetworkManager } // namespace Aws