import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *

Model (owned by the customer in the container) returned an error 500.

*/ export interface ModelError extends __ServiceException__<_ModelErrorDetails> { name: "ModelError"; } export interface _ModelErrorDetails { /** * _Message shape */ Message?: string; /** *

Original status code.

*/ OriginalStatusCode?: number; /** *

Original message.

*/ OriginalMessage?: string; /** *

The Amazon Resource Name (ARN) of the log stream.

*/ LogStreamArn?: string; }