/**
 * Zambda Function log stream logs response
 */
export interface ZambdaLogStreamSearchResponse {
    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 to get the next set of items. This value is returned in the "nextToken" field of the response from the previous call.
     */
    nextToken?: string;
}
