import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
Indicates that the configuration set could not be created because of a naming conflict.
*/ export interface ConfigurationSetAlreadyExistsException extends __ServiceException__<_ConfigurationSetAlreadyExistsExceptionDetails> { name: "ConfigurationSetAlreadyExistsException"; } export interface _ConfigurationSetAlreadyExistsExceptionDetails { /** *Indicates that the configuration set does not exist.
*/ ConfigurationSetName?: string; }