@oystehr/sdk
Version:
Oystehr SDK
30 lines (28 loc) • 749 B
text/typescript
// AUTOGENERATED -- DO NOT EDIT
/**
* Zambda Function log stream logs response
*/
export interface ZambdaLogStreamGetResponse {
logEvents: {
/**
* The content of the log event.
*/
message: string;
/**
* The time the event occurred. Formatted as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
*/
timestamp: number;
/**
* The time the event was ingested. Formatted as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
*/
ingestionTime: number;
}[];
/**
* The token for the next set of items in the backward direction.
*/
nextBackwardToken?: string;
/**
* The token for the next set of items in the forward direction.
*/
nextForwardToken?: string;
}