172 lines
4.8 KiB
C
172 lines
4.8 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/chime/Chime_EXPORTS.h>
|
|||
|
|
#include <aws/chime/ChimeRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Chime
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*/
|
|||
|
|
class AWS_CHIME_API RedactRoomMessageRequest : public ChimeRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
RedactRoomMessageRequest();
|
|||
|
|
|
|||
|
|
// 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 "RedactRoomMessage"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime account ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetAccountId() const{ return m_accountId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime account ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime account ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime account ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime account ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime account ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline RedactRoomMessageRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime account ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline RedactRoomMessageRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Chime account ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline RedactRoomMessageRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The room ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetRoomId() const{ return m_roomId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The room ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool RoomIdHasBeenSet() const { return m_roomIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The room ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetRoomId(const Aws::String& value) { m_roomIdHasBeenSet = true; m_roomId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The room ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetRoomId(Aws::String&& value) { m_roomIdHasBeenSet = true; m_roomId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The room ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetRoomId(const char* value) { m_roomIdHasBeenSet = true; m_roomId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The room ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline RedactRoomMessageRequest& WithRoomId(const Aws::String& value) { SetRoomId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The room ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline RedactRoomMessageRequest& WithRoomId(Aws::String&& value) { SetRoomId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The room ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline RedactRoomMessageRequest& WithRoomId(const char* value) { SetRoomId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The message ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetMessageId() const{ return m_messageId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The message ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool MessageIdHasBeenSet() const { return m_messageIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The message ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetMessageId(const Aws::String& value) { m_messageIdHasBeenSet = true; m_messageId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The message ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetMessageId(Aws::String&& value) { m_messageIdHasBeenSet = true; m_messageId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The message ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetMessageId(const char* value) { m_messageIdHasBeenSet = true; m_messageId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The message ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline RedactRoomMessageRequest& WithMessageId(const Aws::String& value) { SetMessageId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The message ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline RedactRoomMessageRequest& WithMessageId(Aws::String&& value) { SetMessageId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The message ID.</p>
|
|||
|
|
*/
|
|||
|
|
inline RedactRoomMessageRequest& WithMessageId(const char* value) { SetMessageId(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_accountId;
|
|||
|
|
bool m_accountIdHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_roomId;
|
|||
|
|
bool m_roomIdHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_messageId;
|
|||
|
|
bool m_messageIdHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Chime
|
|||
|
|
} // namespace Aws
|