Values.GetImportFileTaskResponseSourceRetrieves the details about a specific import task.
type nonrec t = {completionTime : TimeStamp.t option;The time that the import task completed.
*)id : String_.t option;The import file task id returned in the response of StartImportFileTask.
*)importName : String_.t option;The name of the import task given in StartImportFileTask.
*)inputS3Bucket : ImportS3Bucket.t option;The S3 bucket where import file is located.
*)inputS3Key : ImportS3Key.t option;The Amazon S3 key name of the import file.
*)numberOfRecordsFailed : Integer.t option;The number of records that failed to be imported.
*)numberOfRecordsSuccess : Integer.t option;The number of records successfully imported.
*)startTime : TimeStamp.t option;Start time of the import task.
*)status : ImportFileTaskStatus.t option;Status of import file task.
*)statusReportS3Bucket : ImportS3Bucket.t option;The S3 bucket name for status report of import task.
*)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.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `InternalServerException of InternalServerException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val 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 ]val 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 ]val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of Integer.t
| `String of String_.t
| `Timestamp of TimeStamp.t ])
list ]