/** * 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 UpdateCollaborationRequest : public CleanRoomsRequest { public: AWS_CLEANROOMS_API UpdateCollaborationRequest(); // 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 "UpdateCollaboration"; } 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 UpdateCollaborationRequest& WithCollaborationIdentifier(const Aws::String& value) { SetCollaborationIdentifier(value); return *this;} /** *

The identifier for the collaboration.

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

The identifier for the collaboration.

*/ inline UpdateCollaborationRequest& WithCollaborationIdentifier(const char* value) { SetCollaborationIdentifier(value); return *this;} /** *

A human-readable identifier provided by the collaboration owner. Display * names are not unique.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

A human-readable identifier provided by the collaboration owner. Display * names are not unique.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

A human-readable identifier provided by the collaboration owner. Display * names are not unique.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

A human-readable identifier provided by the collaboration owner. Display * names are not unique.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

A human-readable identifier provided by the collaboration owner. Display * names are not unique.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

A human-readable identifier provided by the collaboration owner. Display * names are not unique.

*/ inline UpdateCollaborationRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

A human-readable identifier provided by the collaboration owner. Display * names are not unique.

*/ inline UpdateCollaborationRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

A human-readable identifier provided by the collaboration owner. Display * names are not unique.

*/ inline UpdateCollaborationRequest& WithName(const char* value) { SetName(value); return *this;} /** *

A description of the collaboration.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

A description of the collaboration.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

A description of the collaboration.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

A description of the collaboration.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

A description of the collaboration.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

A description of the collaboration.

*/ inline UpdateCollaborationRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

A description of the collaboration.

*/ inline UpdateCollaborationRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

A description of the collaboration.

*/ inline UpdateCollaborationRequest& WithDescription(const char* value) { SetDescription(value); return *this;} private: Aws::String m_collaborationIdentifier; bool m_collaborationIdentifierHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; }; } // namespace Model } // namespace CleanRooms } // namespace Aws