export interface ZambdaLogStreamSearchParams {
    /**
     * The filter to use for log messages. Supports the full scope of Cloudwatch's search behavior https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/FilterAndPatternSyntax.html.
     */
    filter?: string;
    /**
     * The minimum date and time of the log's timestamp. Formatted as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
     */
    start?: number;
    /**
     * The maximum date and time of the log's timestamp. Formatted as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
     */
    end?: 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;
    id: string;
}
