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

An exception occurred because an invalid gateway request was issued to the service. For more information, see the error and message fields.

*/ export interface InvalidGatewayRequestException extends __ServiceException__<_InvalidGatewayRequestExceptionDetails> { name: "InvalidGatewayRequestException"; } export interface _InvalidGatewayRequestExceptionDetails { /** *

A human-readable message describing the error that occurred.

*/ message?: string; /** *

A StorageGatewayError that provides more detail about the cause of the error.

*/ error?: _UnmarshalledStorageGatewayError; }