deleteCustomVerificationEmailTemplate method

Future<void> deleteCustomVerificationEmailTemplate({
  1. required String templateName,
})

Deletes an existing custom verification email template.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

Parameter templateName : The name of the custom verification email template that you want to delete.

Implementation

Future<void> deleteCustomVerificationEmailTemplate({
  required String templateName,
}) async {
  ArgumentError.checkNotNull(templateName, 'templateName');
  final $request = <String, dynamic>{};
  $request['TemplateName'] = templateName;
  await _protocol.send(
    $request,
    action: 'DeleteCustomVerificationEmailTemplate',
    version: '2010-12-01',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    shape: shapes['DeleteCustomVerificationEmailTemplateRequest'],
    shapes: shapes,
  );
}