Attempting to create an SES TypeScript client using AWS definitions file downloaded from this link
My approach so far:
/// <reference path="../typings/aws-sdk.d.ts" />
var AWS = require('aws-sdk');
var ses:SES = new AWS.SES();
The error encountered is:
/usr/local/bin/tsc --sourcemap SesTest.ts
SesTest.ts(3,9): error TS2304: Cannot find name 'SES'.
Process finished with exit code 2
Struggling to find any documentation or guidance on resolving this issue. Assistance would be greatly appreciated!