Skip to content

Instantly share code, notes, and snippets.

@devdave
Created March 7, 2024 05:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdave/7d2cbcaff79e95ac895d3213dc774e57 to your computer and use it in GitHub Desktop.
Save devdave/7d2cbcaff79e95ac895d3213dc774e57 to your computer and use it in GitHub Desktop.
a part of the cloud front response code
export interface CloudFrontResponseEvent {
Records: Array<{
cf: CloudFrontEvent & {
readonly request: Pick<CloudFrontRequest, Exclude<keyof CloudFrontRequest, "body">>;
response: CloudFrontResponse;
};
}>;
}
@devdave
Copy link
Author

devdave commented Mar 7, 2024

Copied to prove someone's bogus article is the product of ChatGPT hallucinating impossible functionality.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment