/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents a request to create an email template. For more information, see
* the Amazon
* SES Developer Guide.See Also:
AWS
* API Reference
The content of the email, composed of a subject line, an HTML part, and a * text-only part.
*/ inline const Template& GetTemplate() const{ return m_template; } /** *The content of the email, composed of a subject line, an HTML part, and a * text-only part.
*/ inline bool TemplateHasBeenSet() const { return m_templateHasBeenSet; } /** *The content of the email, composed of a subject line, an HTML part, and a * text-only part.
*/ inline void SetTemplate(const Template& value) { m_templateHasBeenSet = true; m_template = value; } /** *The content of the email, composed of a subject line, an HTML part, and a * text-only part.
*/ inline void SetTemplate(Template&& value) { m_templateHasBeenSet = true; m_template = std::move(value); } /** *The content of the email, composed of a subject line, an HTML part, and a * text-only part.
*/ inline CreateTemplateRequest& WithTemplate(const Template& value) { SetTemplate(value); return *this;} /** *The content of the email, composed of a subject line, an HTML part, and a * text-only part.
*/ inline CreateTemplateRequest& WithTemplate(Template&& value) { SetTemplate(std::move(value)); return *this;} private: Template m_template; bool m_templateHasBeenSet = false; }; } // namespace Model } // namespace SES } // namespace Aws