/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace CleanRooms { namespace Model { /** */ class GetCollaborationRequest : public CleanRoomsRequest { public: AWS_CLEANROOMS_API GetCollaborationRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetCollaboration"; } AWS_CLEANROOMS_API Aws::String SerializePayload() const override; /** *

The identifier for the collaboration.

*/ inline const Aws::String& GetCollaborationIdentifier() const{ return m_collaborationIdentifier; } /** *

The identifier for the collaboration.

*/ inline bool CollaborationIdentifierHasBeenSet() const { return m_collaborationIdentifierHasBeenSet; } /** *

The identifier for the collaboration.

*/ inline void SetCollaborationIdentifier(const Aws::String& value) { m_collaborationIdentifierHasBeenSet = true; m_collaborationIdentifier = value; } /** *

The identifier for the collaboration.

*/ inline void SetCollaborationIdentifier(Aws::String&& value) { m_collaborationIdentifierHasBeenSet = true; m_collaborationIdentifier = std::move(value); } /** *

The identifier for the collaboration.

*/ inline void SetCollaborationIdentifier(const char* value) { m_collaborationIdentifierHasBeenSet = true; m_collaborationIdentifier.assign(value); } /** *

The identifier for the collaboration.

*/ inline GetCollaborationRequest& WithCollaborationIdentifier(const Aws::String& value) { SetCollaborationIdentifier(value); return *this;} /** *

The identifier for the collaboration.

*/ inline GetCollaborationRequest& WithCollaborationIdentifier(Aws::String&& value) { SetCollaborationIdentifier(std::move(value)); return *this;} /** *

The identifier for the collaboration.

*/ inline GetCollaborationRequest& WithCollaborationIdentifier(const char* value) { SetCollaborationIdentifier(value); return *this;} private: Aws::String m_collaborationIdentifier; bool m_collaborationIdentifierHasBeenSet = false; }; } // namespace Model } // namespace CleanRooms } // namespace Aws