This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-sesv2/include/aws/sesv2/model/TestRenderEmailTemplateRequest.h

149 lines
5.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/sesv2/SESV2_EXPORTS.h>
#include <aws/sesv2/SESV2Request.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace SESV2
{
namespace Model
{
/**
* <p>&gt;Represents a request to create a preview of the MIME content of an email
* when provided with a template and a set of replacement data.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/sesv2-2019-09-27/TestRenderEmailTemplateRequest">AWS
* API Reference</a></p>
*/
class AWS_SESV2_API TestRenderEmailTemplateRequest : public SESV2Request
{
public:
TestRenderEmailTemplateRequest();
// 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 "TestRenderEmailTemplate"; }
Aws::String SerializePayload() const override;
/**
* <p>The name of the template that you want to render.</p>
*/
inline const Aws::String& GetTemplateName() const{ return m_templateName; }
/**
* <p>The name of the template that you want to render.</p>
*/
inline bool TemplateNameHasBeenSet() const { return m_templateNameHasBeenSet; }
/**
* <p>The name of the template that you want to render.</p>
*/
inline void SetTemplateName(const Aws::String& value) { m_templateNameHasBeenSet = true; m_templateName = value; }
/**
* <p>The name of the template that you want to render.</p>
*/
inline void SetTemplateName(Aws::String&& value) { m_templateNameHasBeenSet = true; m_templateName = std::move(value); }
/**
* <p>The name of the template that you want to render.</p>
*/
inline void SetTemplateName(const char* value) { m_templateNameHasBeenSet = true; m_templateName.assign(value); }
/**
* <p>The name of the template that you want to render.</p>
*/
inline TestRenderEmailTemplateRequest& WithTemplateName(const Aws::String& value) { SetTemplateName(value); return *this;}
/**
* <p>The name of the template that you want to render.</p>
*/
inline TestRenderEmailTemplateRequest& WithTemplateName(Aws::String&& value) { SetTemplateName(std::move(value)); return *this;}
/**
* <p>The name of the template that you want to render.</p>
*/
inline TestRenderEmailTemplateRequest& WithTemplateName(const char* value) { SetTemplateName(value); return *this;}
/**
* <p>A list of replacement values to apply to the template. This parameter is a
* JSON object, typically consisting of key-value pairs in which the keys
* correspond to replacement tags in the email template.</p>
*/
inline const Aws::String& GetTemplateData() const{ return m_templateData; }
/**
* <p>A list of replacement values to apply to the template. This parameter is a
* JSON object, typically consisting of key-value pairs in which the keys
* correspond to replacement tags in the email template.</p>
*/
inline bool TemplateDataHasBeenSet() const { return m_templateDataHasBeenSet; }
/**
* <p>A list of replacement values to apply to the template. This parameter is a
* JSON object, typically consisting of key-value pairs in which the keys
* correspond to replacement tags in the email template.</p>
*/
inline void SetTemplateData(const Aws::String& value) { m_templateDataHasBeenSet = true; m_templateData = value; }
/**
* <p>A list of replacement values to apply to the template. This parameter is a
* JSON object, typically consisting of key-value pairs in which the keys
* correspond to replacement tags in the email template.</p>
*/
inline void SetTemplateData(Aws::String&& value) { m_templateDataHasBeenSet = true; m_templateData = std::move(value); }
/**
* <p>A list of replacement values to apply to the template. This parameter is a
* JSON object, typically consisting of key-value pairs in which the keys
* correspond to replacement tags in the email template.</p>
*/
inline void SetTemplateData(const char* value) { m_templateDataHasBeenSet = true; m_templateData.assign(value); }
/**
* <p>A list of replacement values to apply to the template. This parameter is a
* JSON object, typically consisting of key-value pairs in which the keys
* correspond to replacement tags in the email template.</p>
*/
inline TestRenderEmailTemplateRequest& WithTemplateData(const Aws::String& value) { SetTemplateData(value); return *this;}
/**
* <p>A list of replacement values to apply to the template. This parameter is a
* JSON object, typically consisting of key-value pairs in which the keys
* correspond to replacement tags in the email template.</p>
*/
inline TestRenderEmailTemplateRequest& WithTemplateData(Aws::String&& value) { SetTemplateData(std::move(value)); return *this;}
/**
* <p>A list of replacement values to apply to the template. This parameter is a
* JSON object, typically consisting of key-value pairs in which the keys
* correspond to replacement tags in the email template.</p>
*/
inline TestRenderEmailTemplateRequest& WithTemplateData(const char* value) { SetTemplateData(value); return *this;}
private:
Aws::String m_templateName;
bool m_templateNameHasBeenSet;
Aws::String m_templateData;
bool m_templateDataHasBeenSet;
};
} // namespace Model
} // namespace SESV2
} // namespace Aws