/**
 * 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;
}
