Fix build issue

This commit is contained in:
Jan Oberhauser
2021-10-12 22:20:51 -05:00
parent 8618415772
commit 1e34aca8bd
9 changed files with 19 additions and 13 deletions

View File

@@ -45,9 +45,10 @@ export async function awsApiRequest(this: IHookFunctions | IExecuteFunctions | I
const endpoint = new URL(getEndpointForService(service, credentials) + path);
const options = sign({
// @ts-ignore
uri: endpoint,
service,
region: credentials.region,
region: credentials.region as string,
method,
path: '/',
headers: { ...headers },