Module Values.InvokeAsyncRequestSource

For asynchronous function invocation, use Invoke. Invokes a function asynchronously. The payload limit is 256KB. For larger payloads, for up to 1MB, use Invoke. If you do use the InvokeAsync action, note that it doesn't support the use of X-Ray active tracing. Trace ID is not propagated to the function, even if X-Ray active tracing is turned on.

Sourcetype nonrec t = {
  1. functionName : NamespacedFunctionName.t;
    (*

    The name or ARN of the Lambda function. Name formats Function name – my-function. Function ARN – arn:aws:lambda:us-west-2:123456789012:function:my-function. Partial ARN – 123456789012:function:my-function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.

    *)
  2. invokeArgs : BlobStream.t;
    (*

    The JSON that you want to provide to your Lambda function as input.

    *)
}
Sourceval context_ : string
Sourceval make : functionName:NamespacedFunctionName.t -> invokeArgs:BlobStream.t -> unit -> t
Sourceval of_header_and_body : ((string, NamespacedFunctionName.t) Awso.Import.List.Assoc.t * BlobStream.t) -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of BlobStream.t | `String of NamespacedFunctionName.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