The context spec used to get the Amplify server context.
Input for PUT operation.
Send a PUT request
import { put } from 'aws-amplify/api/server';
//...
const restApiResponse = await runWithAmplifyServerContext({
nextServerContext: { request, response },
operation: async (contextSpec) => {
try {
const { body } = await put(contextSpec, input).response;
return await body.json();
} catch (error) {
console.log(error);
return false;
}
},
});
PUT HTTP request (server-side)