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

The entire collaboration for this identifier.

*/ inline const Collaboration& GetCollaboration() const{ return m_collaboration; } /** *

The entire collaboration for this identifier.

*/ inline void SetCollaboration(const Collaboration& value) { m_collaboration = value; } /** *

The entire collaboration for this identifier.

*/ inline void SetCollaboration(Collaboration&& value) { m_collaboration = std::move(value); } /** *

The entire collaboration for this identifier.

*/ inline GetCollaborationResult& WithCollaboration(const Collaboration& value) { SetCollaboration(value); return *this;} /** *

The entire collaboration for this identifier.

*/ inline GetCollaborationResult& WithCollaboration(Collaboration&& value) { SetCollaboration(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 GetCollaborationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetCollaborationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetCollaborationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Collaboration m_collaboration; Aws::String m_requestId; }; } // namespace Model } // namespace CleanRooms } // namespace Aws