• PUT HTTP request (server-side)

    Parameters

    Returns PutOperation

    Throws

    • RestApiError

    Example

    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;
    }
    },
    });