Interface BucketHandlerArgs

BucketHandlerArgs are the arguments passed to an [onPut] or [onDelete] handler.

interface BucketHandlerArgs {
    eventTime: string;
    key: string;
    size: number;
}

Properties

Properties

eventTime: string

The time (in ISO-8601 format) when the [put] or [delete] was completed.

key: string

The key that was updated or deleted by the operation.

size: number

The size, in bytes, of the blob that was [put].

Generated using TypeDoc