Created
November 1, 2022 09:57
-
-
Save cal0610/4e35a1e30bce310526090c1db8cb3d9c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as AWS from 'aws-sdk'; | |
const TABLE_NAME = process.env.STORE_TABLE_NAME || ''; | |
const PRIMARY_KEY = process.env.STORE_PRIMARY_KEY || ''; | |
const db = new AWS.DynamoDB.DocumentClient(); | |
export const handler = async (event: any = {}): Promise<any> => { | |
const requestedItemId = event.pathParameters.id; | |
if (!requestedItemId) { | |
return { | |
statusCode: 400, | |
body: `Error: You are missing the path parameter id`, | |
}; | |
} | |
const params = { | |
TableName: TABLE_NAME, | |
Key: { | |
[PRIMARY_KEY]: requestedItemId, | |
}, | |
}; | |
try { | |
const response = await db.get(params).promise(); | |
if (response.Item) { | |
return { | |
statusCode: 200, | |
headers: { | |
'Access-Control-Allow-Origin': '*', | |
}, | |
body: JSON.stringify(response.Item), | |
}; | |
} else { | |
return { statusCode: 404 }; | |
} | |
} catch (dbError: any) { | |
return { statusCode: 500, body: JSON.stringify(dbError) }; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment