Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DescribeBulkImportJobResponse

import type { DescribeBulkImportJobResponse } from "https://aws-api.deno.dev/v0.4/services/iotsitewise.ts?docs=full";
interface DescribeBulkImportJobResponse {
errorReportLocation: ErrorReportLocation;
files: File[];
jobConfiguration: JobConfiguration;
jobCreationDate: Date | number;
jobId: string;
jobLastUpdateDate: Date | number;
jobName: string;
jobRoleArn: string;
jobStatus: JobStatus;
}

§Properties

§
errorReportLocation: ErrorReportLocation
[src]

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

§
files: File[]
[src]

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

§
jobConfiguration: JobConfiguration
[src]

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

§
jobCreationDate: Date | number
[src]

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

§
jobId: string
[src]

The ID of the job.

§
jobLastUpdateDate: Date | number
[src]

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

§
jobName: string
[src]

The unique name that helps identify the job request.

§
jobRoleArn: string
[src]

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

§
jobStatus: JobStatus
[src]

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.