Created
March 7, 2024 05:31
-
-
Save devdave/7d2cbcaff79e95ac895d3213dc774e57 to your computer and use it in GitHub Desktop.
a part of the cloud front response code
This file contains hidden or 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
export interface CloudFrontResponseEvent { | |
Records: Array<{ | |
cf: CloudFrontEvent & { | |
readonly request: Pick<CloudFrontRequest, Exclude<keyof CloudFrontRequest, "body">>; | |
response: CloudFrontResponse; | |
}; | |
}>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Copied to prove someone's bogus article is the product of ChatGPT hallucinating impossible functionality.