Module Values.StartSearchResultExportJobInputSource

This operations starts a job to export the results of search job to a designated S3 bucket.

Sourcetype nonrec t = {
  1. searchJobIdentifier : GenericId.t;
    (*

    The unique string that specifies the search job.

    *)
  2. exportSpecification : ExportSpecification.t;
    (*

    This specification contains a required string of the destination bucket; optionally, you can include the destination prefix.

    *)
  3. clientToken : String_.t option;
    (*

    Include this parameter to allow multiple identical calls for idempotency. A client token is valid for 8 hours after the first request that uses it is completed. After this time, any request with the same token is treated as a new request.

    *)
  4. tags : TagMap.t option;
    (*

    Optional tags to include. A tag is a key-value pair you can use to manage, filter, and search for your resources. Allowed characters include UTF-8 letters, numbers, spaces, and the following characters: + - = . _ : /.

    *)
  5. roleArn : IamRoleArn.t option;
    (*

    This parameter specifies the role ARN used to start the search results export jobs.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?tags:??? -> ?roleArn:??? -> searchJobIdentifier:GenericId.t -> exportSpecification:ExportSpecification.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of GenericId.t | `Structure of (string * [> `Structure of (string * [> `String of String_.t ]) list ]) list ]) 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