Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delete amazon ses template from cli

Can anyone tell me how to delete amazon ses template from the cli?

I'm trying to use this command from the amazon doc:

aws delete-template --template-name xxx

but does not work from the cli. When I try to list all available options when I hit this command:

aws help

The delete-template is not available. I have the latest version:

aws-cli/1.15.79

https://docs.aws.amazon.com/cli/latest/reference/ses/delete-template.html

BR,

like image 225
Игор Ташевски Avatar asked Jan 27 '23 14:01

Игор Ташевски


1 Answers

you are missing ses after aws in the command

aws ses delete-template --template-name XXXX --region XXXXX

like image 107
Sajan Lamsal Avatar answered Feb 05 '23 04:02

Sajan Lamsal