import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permissions to use the action or resource, or specifying an identifier that is not valid.
*/ export interface ClientException extends __ServiceException__<_ClientExceptionDetails> { name: "ClientException"; } export interface _ClientExceptionDetails { /** * _String shape */ message?: string; }