/** * 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 DeleteMemberRequest : public CleanRoomsRequest { public: AWS_CLEANROOMS_API DeleteMemberRequest(); // 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 "DeleteMember"; } AWS_CLEANROOMS_API Aws::String SerializePayload() const override; /** *

The unique identifier for the associated collaboration.

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

The unique identifier for the associated collaboration.

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

The unique identifier for the associated collaboration.

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

The unique identifier for the associated collaboration.

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

The unique identifier for the associated collaboration.

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

The unique identifier for the associated collaboration.

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

The unique identifier for the associated collaboration.

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

The unique identifier for the associated collaboration.

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

The account ID of the member to remove.

*/ inline const Aws::String& GetAccountId() const{ return m_accountId; } /** *

The account ID of the member to remove.

*/ inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; } /** *

The account ID of the member to remove.

*/ inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; } /** *

The account ID of the member to remove.

*/ inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); } /** *

The account ID of the member to remove.

*/ inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); } /** *

The account ID of the member to remove.

*/ inline DeleteMemberRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;} /** *

The account ID of the member to remove.

*/ inline DeleteMemberRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;} /** *

The account ID of the member to remove.

*/ inline DeleteMemberRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;} private: Aws::String m_collaborationIdentifier; bool m_collaborationIdentifierHasBeenSet = false; Aws::String m_accountId; bool m_accountIdHasBeenSet = false; }; } // namespace Model } // namespace CleanRooms } // namespace Aws