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

The resource that you tried to create already exists.

*/ export interface ResourceExistsException extends __ServiceException__<_ResourceExistsExceptionDetails> { name: "ResourceExistsException"; } export interface _ResourceExistsExceptionDetails { /** * _String shape */ Message?: string; /** *

For a ResourceExistsException error, the type of resource that the error applies to.

*/ ResourceType?: string; }