/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Indicates that a custom verification email template with the name you
* specified does not exist.See Also:
AWS
* API Reference
Indicates that the provided custom verification email template does not * exist.
*/ inline const Aws::String& GetCustomVerificationEmailTemplateName() const{ return m_customVerificationEmailTemplateName; } /** *Indicates that the provided custom verification email template does not * exist.
*/ inline bool CustomVerificationEmailTemplateNameHasBeenSet() const { return m_customVerificationEmailTemplateNameHasBeenSet; } /** *Indicates that the provided custom verification email template does not * exist.
*/ inline void SetCustomVerificationEmailTemplateName(const Aws::String& value) { m_customVerificationEmailTemplateNameHasBeenSet = true; m_customVerificationEmailTemplateName = value; } /** *Indicates that the provided custom verification email template does not * exist.
*/ inline void SetCustomVerificationEmailTemplateName(Aws::String&& value) { m_customVerificationEmailTemplateNameHasBeenSet = true; m_customVerificationEmailTemplateName = std::move(value); } /** *Indicates that the provided custom verification email template does not * exist.
*/ inline void SetCustomVerificationEmailTemplateName(const char* value) { m_customVerificationEmailTemplateNameHasBeenSet = true; m_customVerificationEmailTemplateName.assign(value); } /** *Indicates that the provided custom verification email template does not * exist.
*/ inline CustomVerificationEmailTemplateDoesNotExistException& WithCustomVerificationEmailTemplateName(const Aws::String& value) { SetCustomVerificationEmailTemplateName(value); return *this;} /** *Indicates that the provided custom verification email template does not * exist.
*/ inline CustomVerificationEmailTemplateDoesNotExistException& WithCustomVerificationEmailTemplateName(Aws::String&& value) { SetCustomVerificationEmailTemplateName(std::move(value)); return *this;} /** *Indicates that the provided custom verification email template does not * exist.
*/ inline CustomVerificationEmailTemplateDoesNotExistException& WithCustomVerificationEmailTemplateName(const char* value) { SetCustomVerificationEmailTemplateName(value); return *this;} private: Aws::String m_customVerificationEmailTemplateName; bool m_customVerificationEmailTemplateNameHasBeenSet = false; }; } // namespace Model } // namespace SES } // namespace Aws