Module Values.GetSearchResultExportJobOutputSource

This operation retrieves the metadata of an export job. An export job is an operation that transmits the results of a search job to a specified S3 bucket in a .csv file. An export job allows you to retain results of a search beyond the search job's scheduled retention of 7 days.

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

    This is the unique string that identifies the specified export job.

    *)
  2. exportJobArn : ExportJobArn.t option;
    (*

    The unique Amazon Resource Name (ARN) that uniquely identifies the export job.

    *)
  3. status : ExportJobStatus.t option;
    (*

    This is the current status of the export job.

    *)
  4. creationTime : Timestamp.t option;
    (*

    The date and time that an export job was created, in Unix format and Coordinated Universal Time (UTC). The value of CreationTime is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.

    *)
  5. completionTime : Timestamp.t option;
    (*

    The date and time that an export job completed, in Unix format and Coordinated Universal Time (UTC). The value of CreationTime is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.

    *)
  6. statusMessage : String_.t option;
    (*

    A status message is a string that is returned for search job with a status of FAILED, along with steps to remedy and retry the operation.

    *)
  7. exportSpecification : ExportSpecification.t option;
    (*

    The export specification consists of the destination S3 bucket to which the search results were exported, along with the destination prefix.

    *)
  8. searchJobArn : SearchJobArn.t option;
    (*

    The unique string that identifies the Amazon Resource Name (ARN) of the specified search job.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?exportJobIdentifier:??? -> ?exportJobArn:??? -> ?status:??? -> ?creationTime:??? -> ?completionTime:??? -> ?statusMessage:??? -> ?exportSpecification:??? -> ?searchJobArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GenericId.t | `Structure of (string * [> `Structure of (string * [> `String of String_.t ]) list ]) list | `Timestamp of Timestamp.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