A county flood-camera function runs when a new video lands in Blob Storage and must process the bytes of that same blob. How should the function obtain the triggering blob’s content?
Select an answer to reveal the explanation.
Short Explanation
Think of the trigger as handing you the package that just arrived. Wire an input binding (or use the trigger’s blob payload) so the path expression points at that same blob—no scavenger hunt through the container.
Full Explanation
Azure Functions blob triggers can pair with a Blob input binding whose path uses binding expressions for the triggering blob’s container and name. That pattern reads the bytes that caused the run without hard-coded paths. Listing the container or fixing a static path misses the evented contract and invites race conditions. Timer-plus-CDN is unrelated to processing the uploaded flood-camera video.