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

Indicates that the event destination could not be created because of a naming conflict.

*/ export interface EventDestinationAlreadyExistsException extends __ServiceException__<_EventDestinationAlreadyExistsExceptionDetails> { name: "EventDestinationAlreadyExistsException"; } export interface _EventDestinationAlreadyExistsExceptionDetails { /** *

Indicates that the configuration set does not exist.

*/ ConfigurationSetName?: string; /** *

Indicates that the event destination does not exist.

*/ EventDestinationName?: string; }