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

One or more parameters in this request are not valid.

*/ export interface InvalidParameterException extends __ServiceException__<_InvalidParameterExceptionDetails> { name: "InvalidParameterException"; } export interface _InvalidParameterExceptionDetails { /** * _ExceptionMessage shape */ Message: string; /** *

For an InvalidParameterException error, the name of the parameter that's invalid.

*/ FieldName?: string; }