import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
Parameter name is invalid.
*/ export interface InvalidArgument extends __ServiceException__<_InvalidArgumentDetails> { name: "InvalidArgument"; } export interface _InvalidArgumentDetails { /** *Descriptive message for the error response.
*/ message?: string; }