Module Values.DescribeBulkImportJobResponseSource

Retrieves information about a bulk import job request. For more information, see Describe a bulk import job (CLI) in the Amazon Simple Storage Service User Guide.

Sourcetype nonrec t = {
  1. jobId : ID.t option;
    (*

    The ID of the job.

    *)
  2. jobName : Name.t option;
    (*

    The unique name that helps identify the job request.

    *)
  3. jobStatus : JobStatus.t option;
    (*

    The status of the bulk import job can be one of following values: PENDING – IoT SiteWise is waiting for the current bulk import job to finish. CANCELLED – The bulk import job has been canceled. RUNNING – IoT SiteWise is processing your request to import your data from Amazon S3. COMPLETED – IoT SiteWise successfully completed your request to import data from Amazon S3. FAILED – IoT SiteWise couldn't process your request to import data from Amazon S3. You can use logs saved in the specified error report location in Amazon S3 to troubleshoot issues. COMPLETED_WITH_FAILURES – IoT SiteWise completed your request to import data from Amazon S3 with errors. You can use logs saved in the specified error report location in Amazon S3 to troubleshoot issues.

    *)
  4. jobRoleArn : ARN.t option;
    (*

    The ARN of the IAM role that allows IoT SiteWise to read Amazon S3 data.

    *)
  5. files : Files.t option;
    (*

    The files in the specified Amazon S3 bucket that contain your data.

    *)
  6. errorReportLocation : ErrorReportLocation.t option;
    (*

    The Amazon S3 destination where errors associated with the job creation request are saved.

    *)
  7. jobConfiguration : JobConfiguration.t option;
    (*

    Contains the configuration information of a job, such as the file format used to save data in Amazon S3.

    *)
  8. jobCreationDate : Timestamp.t option;
    (*

    The date the job was created, in Unix epoch TIME.

    *)
  9. jobLastUpdateDate : Timestamp.t option;
    (*

    The date the job was last updated, in Unix epoch time.

    *)
  10. adaptiveIngestion : AdaptiveIngestion.t option;
    (*

    If set to true, ingest new data into IoT SiteWise storage. Measurements with notifications, metrics and transforms are computed. If set to false, historical data is ingested into IoT SiteWise as is.

    *)
  11. deleteFilesAfterImport : DeleteFilesAfterImport.t option;
    (*

    If set to true, your data files is deleted from S3, after ingestion into IoT SiteWise storage.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalFailureException of InternalFailureException.t
  2. | `InvalidRequestException of InvalidRequestException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?jobId:??? -> ?jobName:??? -> ?jobStatus:??? -> ?jobRoleArn:??? -> ?files:??? -> ?errorReportLocation:??? -> ?jobConfiguration:??? -> ?jobCreationDate:??? -> ?jobLastUpdateDate:??? -> ?adaptiveIngestion:??? -> ?deleteFilesAfterImport:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalFailureException of InternalFailureException.t | `InvalidRequestException of InvalidRequestException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalFailureException of InternalFailureException.t | `InvalidRequestException of InvalidRequestException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of AdaptiveIngestion.t | `Enum of string | `List of [> `Structure of (string * [> `String of Bucket.t ]) list ] list | `String of ID.t | `Structure of (string * [> `String of Bucket.t | `Structure of (string * [> `Structure of (string * [> `List of [> `Enum of string ] list ]) list ]) 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