Module Values_0.SqsActionSource

Describes an action to publish data to an Amazon SQS queue.

Sourcetype nonrec t = {
  1. roleArn : AwsArn.t;
    (*

    The ARN of the IAM role that grants access.

    *)
  2. queueUrl : QueueUrl.t;
    (*

    The URL of the Amazon SQS queue.

    *)
  3. useBase64 : UseBase64.t option;
    (*

    Specifies whether to use Base64 encoding.

    *)
}
Sourceval context_ : string
Sourceval make : ?useBase64:??? -> roleArn:AwsArn.t -> queueUrl:QueueUrl.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of UseBase64.t | `String of AwsArn.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