import { EmailTarget, Operation } from '../models'; /** * Input param for creating an EmailTarget * * @remarks * This describes the values to use for email target * * @property sourceGroupId - The id from the SourceGroup that should be monitored * @property filterId - The id of the Filter that should be applied to the Alert * @property targetGroupId - The id of the TargetGroup that the Alert should publish to *
*
* See [Alert Creation Guide]{@link https://docs.notifi.network} for more information on creating Alerts */ export declare type CreateEmailTargetInput = Readonly<{ name: string; value: string; }>; export declare type CreateEmailTargetResult = EmailTarget; export declare type CreateEmailTargetService = Readonly<{ createEmailTarget: Operation; }>; //# sourceMappingURL=CreateEmailTarget.d.ts.map