Module Values.DeliverToMailboxActionSource

This action to delivers an email to a mailbox.

Sourcetype nonrec t = {
  1. actionFailurePolicy : ActionFailurePolicy.t option;
    (*

    A policy that states what to do in the case of failure. The action will fail if there are configuration errors. For example, the mailbox ARN is no longer valid.

    *)
  2. mailboxArn : NameOrArn.t;
    (*

    The Amazon Resource Name (ARN) of a WorkMail organization to deliver the email to.

    *)
  3. roleArn : IamRoleArn.t;
    (*

    The Amazon Resource Name (ARN) of an IAM role to use to execute this action. The role must have access to the workmail:DeliverToMailbox API.

    *)
}
Sourceval context_ : string
Sourceval make : ?actionFailurePolicy:??? -> mailboxArn:NameOrArn.t -> roleArn:IamRoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NameOrArn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t