227 lines
7.7 KiB
C++
227 lines
7.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/connectparticipant/ConnectParticipant_EXPORTS.h>
|
|
#include <aws/connectparticipant/ConnectParticipantRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
#include <aws/core/utils/UUID.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace ConnectParticipant
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_CONNECTPARTICIPANT_API SendMessageRequest : public ConnectParticipantRequest
|
|
{
|
|
public:
|
|
SendMessageRequest();
|
|
|
|
// 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 "SendMessage"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>The type of the content. Supported types are text/plain.</p>
|
|
*/
|
|
inline const Aws::String& GetContentType() const{ return m_contentType; }
|
|
|
|
/**
|
|
* <p>The type of the content. Supported types are text/plain.</p>
|
|
*/
|
|
inline bool ContentTypeHasBeenSet() const { return m_contentTypeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The type of the content. Supported types are text/plain.</p>
|
|
*/
|
|
inline void SetContentType(const Aws::String& value) { m_contentTypeHasBeenSet = true; m_contentType = value; }
|
|
|
|
/**
|
|
* <p>The type of the content. Supported types are text/plain.</p>
|
|
*/
|
|
inline void SetContentType(Aws::String&& value) { m_contentTypeHasBeenSet = true; m_contentType = std::move(value); }
|
|
|
|
/**
|
|
* <p>The type of the content. Supported types are text/plain.</p>
|
|
*/
|
|
inline void SetContentType(const char* value) { m_contentTypeHasBeenSet = true; m_contentType.assign(value); }
|
|
|
|
/**
|
|
* <p>The type of the content. Supported types are text/plain.</p>
|
|
*/
|
|
inline SendMessageRequest& WithContentType(const Aws::String& value) { SetContentType(value); return *this;}
|
|
|
|
/**
|
|
* <p>The type of the content. Supported types are text/plain.</p>
|
|
*/
|
|
inline SendMessageRequest& WithContentType(Aws::String&& value) { SetContentType(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The type of the content. Supported types are text/plain.</p>
|
|
*/
|
|
inline SendMessageRequest& WithContentType(const char* value) { SetContentType(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The content of the message.</p>
|
|
*/
|
|
inline const Aws::String& GetContent() const{ return m_content; }
|
|
|
|
/**
|
|
* <p>The content of the message.</p>
|
|
*/
|
|
inline bool ContentHasBeenSet() const { return m_contentHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The content of the message.</p>
|
|
*/
|
|
inline void SetContent(const Aws::String& value) { m_contentHasBeenSet = true; m_content = value; }
|
|
|
|
/**
|
|
* <p>The content of the message.</p>
|
|
*/
|
|
inline void SetContent(Aws::String&& value) { m_contentHasBeenSet = true; m_content = std::move(value); }
|
|
|
|
/**
|
|
* <p>The content of the message.</p>
|
|
*/
|
|
inline void SetContent(const char* value) { m_contentHasBeenSet = true; m_content.assign(value); }
|
|
|
|
/**
|
|
* <p>The content of the message.</p>
|
|
*/
|
|
inline SendMessageRequest& WithContent(const Aws::String& value) { SetContent(value); return *this;}
|
|
|
|
/**
|
|
* <p>The content of the message.</p>
|
|
*/
|
|
inline SendMessageRequest& WithContent(Aws::String&& value) { SetContent(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The content of the message.</p>
|
|
*/
|
|
inline SendMessageRequest& WithContent(const char* value) { SetContent(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>A unique, case-sensitive identifier that you provide to ensure the
|
|
* idempotency of the request.</p>
|
|
*/
|
|
inline const Aws::String& GetClientToken() const{ return m_clientToken; }
|
|
|
|
/**
|
|
* <p>A unique, case-sensitive identifier that you provide to ensure the
|
|
* idempotency of the request.</p>
|
|
*/
|
|
inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A unique, case-sensitive identifier that you provide to ensure the
|
|
* idempotency of the request.</p>
|
|
*/
|
|
inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
|
|
|
|
/**
|
|
* <p>A unique, case-sensitive identifier that you provide to ensure the
|
|
* idempotency of the request.</p>
|
|
*/
|
|
inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
|
|
|
|
/**
|
|
* <p>A unique, case-sensitive identifier that you provide to ensure the
|
|
* idempotency of the request.</p>
|
|
*/
|
|
inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
|
|
|
|
/**
|
|
* <p>A unique, case-sensitive identifier that you provide to ensure the
|
|
* idempotency of the request.</p>
|
|
*/
|
|
inline SendMessageRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
|
|
|
|
/**
|
|
* <p>A unique, case-sensitive identifier that you provide to ensure the
|
|
* idempotency of the request.</p>
|
|
*/
|
|
inline SendMessageRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A unique, case-sensitive identifier that you provide to ensure the
|
|
* idempotency of the request.</p>
|
|
*/
|
|
inline SendMessageRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The authentication token associated with the connection.</p>
|
|
*/
|
|
inline const Aws::String& GetConnectionToken() const{ return m_connectionToken; }
|
|
|
|
/**
|
|
* <p>The authentication token associated with the connection.</p>
|
|
*/
|
|
inline bool ConnectionTokenHasBeenSet() const { return m_connectionTokenHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The authentication token associated with the connection.</p>
|
|
*/
|
|
inline void SetConnectionToken(const Aws::String& value) { m_connectionTokenHasBeenSet = true; m_connectionToken = value; }
|
|
|
|
/**
|
|
* <p>The authentication token associated with the connection.</p>
|
|
*/
|
|
inline void SetConnectionToken(Aws::String&& value) { m_connectionTokenHasBeenSet = true; m_connectionToken = std::move(value); }
|
|
|
|
/**
|
|
* <p>The authentication token associated with the connection.</p>
|
|
*/
|
|
inline void SetConnectionToken(const char* value) { m_connectionTokenHasBeenSet = true; m_connectionToken.assign(value); }
|
|
|
|
/**
|
|
* <p>The authentication token associated with the connection.</p>
|
|
*/
|
|
inline SendMessageRequest& WithConnectionToken(const Aws::String& value) { SetConnectionToken(value); return *this;}
|
|
|
|
/**
|
|
* <p>The authentication token associated with the connection.</p>
|
|
*/
|
|
inline SendMessageRequest& WithConnectionToken(Aws::String&& value) { SetConnectionToken(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The authentication token associated with the connection.</p>
|
|
*/
|
|
inline SendMessageRequest& WithConnectionToken(const char* value) { SetConnectionToken(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_contentType;
|
|
bool m_contentTypeHasBeenSet;
|
|
|
|
Aws::String m_content;
|
|
bool m_contentHasBeenSet;
|
|
|
|
Aws::String m_clientToken;
|
|
bool m_clientTokenHasBeenSet;
|
|
|
|
Aws::String m_connectionToken;
|
|
bool m_connectionTokenHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace ConnectParticipant
|
|
} // namespace Aws
|