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

This exception contains a list of messages that might contain one or more error messages. Each error message indicates one error in the change batch.

*/ export interface InvalidChangeBatch extends __ServiceException__<_InvalidChangeBatchDetails> { name: "InvalidChangeBatch"; } export interface _InvalidChangeBatchDetails { /** *

Descriptive message for the error response.

*/ messages?: Array; /** * _ErrorMessage shape */ message?: string; }