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

Indicates that a resource could not be created because of a naming conflict.

*/ export interface AlreadyExistsException extends __ServiceException__<_AlreadyExistsExceptionDetails> { name: "AlreadyExistsException"; } export interface _AlreadyExistsExceptionDetails { /** *

Indicates that a resource could not be created because the resource name already exists.

*/ Name?: string; }