/** *

An object that contains the response from the SendBulkTemplatedEmail operation.

*/ export interface _BulkEmailDestinationStatus { /** *

The status of a message sent using the SendBulkTemplatedEmail operation.

Possible values for this parameter include:

*/ Status?: "Success" | "MessageRejected" | "MailFromDomainNotVerified" | "ConfigurationSetDoesNotExist" | "TemplateDoesNotExist" | "AccountSuspended" | "AccountThrottled" | "AccountDailyQuotaExceeded" | "InvalidSendingPoolName" | "AccountSendingPaused" | "ConfigurationSetSendingPaused" | "InvalidParameterValue" | "TransientFailure" | "Failed" | string; /** *

A description of an error that prevented a message being sent using the SendBulkTemplatedEmail operation.

*/ Error?: string; /** *

The unique message identifier returned from the SendBulkTemplatedEmail operation.

*/ MessageId?: string; } export declare type _UnmarshalledBulkEmailDestinationStatus = _BulkEmailDestinationStatus;