export interface ZambdaLogStreamGetParams {
    /**
     * The token to get the next set of items. This value is returned in the "nextForwardToken" field of the response from the previous call.
     */
    nextToken?: string;
    id: string;
    logStreamName: string;
}
