Module Values.DeliverToQBusinessActionSource

The action to deliver incoming emails to an Amazon Q Business application for indexing.

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 specified application has been deleted or the role lacks necessary permissions to call the qbusiness:BatchPutDocument API.

    *)
  2. applicationId : QBusinessApplicationId.t;
    (*

    The unique identifier of the Amazon Q Business application instance where the email content will be delivered.

    *)
  3. indexId : QBusinessIndexId.t;
    (*

    The identifier of the knowledge base index within the Amazon Q Business application where the email content will be stored and indexed.

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

    The Amazon Resource Name (ARN) of the IAM Role to use while delivering to Amazon Q Business. This role must have access to the qbusiness:BatchPutDocument API for the given application and index.

    *)
}
Sourceval context_ : string
Sourceval make : ?actionFailurePolicy:??? -> applicationId:QBusinessApplicationId.t -> indexId:QBusinessIndexId.t -> roleArn:IamRoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of QBusinessApplicationId.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