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

The execution has the same name as another execution (but a different input).

Executions with the same name and input are considered idempotent.

*/ export interface ExecutionAlreadyExists extends __ServiceException__<_ExecutionAlreadyExistsDetails> { name: "ExecutionAlreadyExists"; } export interface _ExecutionAlreadyExistsDetails { /** * _ErrorMessage shape */ message?: string; }