yandex-cloud-functions-router
Version:
Node router for Yandex Cloud Functions
20 lines (19 loc) • 611 B
TypeScript
declare type CloudFunctionObjectStorageEventMessage = {
event_metadata: {
event_id: string;
event_type: 'yandex.cloud.events.storage.ObjectCreate' | 'yandex.cloud.events.storage.ObjectUpdate' | 'yandex.cloud.events.storage.ObjectDelete';
created_at: string;
tracing_context: {
trace_id: string;
span_id?: string;
parent_span_id?: string;
};
cloud_id: string;
folder_id: string;
};
details: {
bucket_id: string;
object_id: string;
};
};
export { CloudFunctionObjectStorageEventMessage };