Module Values.GetImportFileTaskResponseSource

Retrieves the details about a specific import task.

Sourcetype nonrec t = {
  1. completionTime : TimeStamp.t option;
    (*

    The time that the import task completed.

    *)
  2. id : String_.t option;
    (*

    The import file task id returned in the response of StartImportFileTask.

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

    The name of the import task given in StartImportFileTask.

    *)
  4. inputS3Bucket : ImportS3Bucket.t option;
    (*

    The S3 bucket where import file is located.

    *)
  5. inputS3Key : ImportS3Key.t option;
    (*

    The Amazon S3 key name of the import file.

    *)
  6. numberOfRecordsFailed : Integer.t option;
    (*

    The number of records that failed to be imported.

    *)
  7. numberOfRecordsSuccess : Integer.t option;
    (*

    The number of records successfully imported.

    *)
  8. startTime : TimeStamp.t option;
    (*

    Start time of the import task.

    *)
  9. status : ImportFileTaskStatus.t option;
    (*

    Status of import file task.

    *)
  10. statusReportS3Bucket : ImportS3Bucket.t option;
    (*

    The S3 bucket name for status report of import task.

    *)
  11. statusReportS3Key : ImportS3Key.t option;
    (*

    The Amazon S3 key name for status report of import task. The report contains details about whether each record imported successfully or why it did not.

    *)
}
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 : ?completionTime:??? -> ?id:??? -> ?importName:??? -> ?inputS3Bucket:??? -> ?inputS3Key:??? -> ?numberOfRecordsFailed:??? -> ?numberOfRecordsSuccess:??? -> ?startTime:??? -> ?status:??? -> ?statusReportS3Bucket:??? -> ?statusReportS3Key:??? -> 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 | `Integer of Integer.t | `String of String_.t | `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