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

DatasetExportJob

import type { DatasetExportJob } from "https://aws-api.deno.dev/v0.3/services/personalize.ts?docs=full";

Describes a job that exports a dataset to an Amazon S3 bucket. For more information, see "CreateDatasetExportJob".

A dataset export job can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
interface DatasetExportJob {
creationDateTime?: Date | number | null;
datasetArn?: string | null;
datasetExportJobArn?: string | null;
failureReason?: string | null;
ingestionMode?: IngestionMode | null;
jobName?: string | null;
jobOutput?: DatasetExportJobOutput | null;
lastUpdatedDateTime?: Date | number | null;
roleArn?: string | null;
status?: string | null;
}

§Properties

§
creationDateTime?: Date | number | null
[src]

The creation date and time (in Unix time) of the dataset export job.

§
datasetArn?: string | null
[src]

The Amazon Resource Name (ARN) of the dataset to export.

§
datasetExportJobArn?: string | null
[src]

The Amazon Resource Name (ARN) of the dataset export job.

§
failureReason?: string | null
[src]

If a dataset export job fails, provides the reason why.

§
ingestionMode?: IngestionMode | null
[src]

The data to export, based on how you imported the data. You can choose to export BULK data that you imported using a dataset import job, PUT data that you imported incrementally (using the console, PutEvents, PutUsers and PutItems operations), or ALL for both types. The default value is PUT.

§
jobName?: string | null
[src]

The name of the export job.

§
jobOutput?: DatasetExportJobOutput | null
[src]

The path to the Amazon S3 bucket where the job's output is stored. For example:

s3://bucket-name/folder-name/
§
lastUpdatedDateTime?: Date | number | null
[src]

The date and time (in Unix time) the status of the dataset export job was last updated.

§
roleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the IAM service role that has permissions to add data to your output Amazon S3 bucket.

§
status?: string | null
[src]

The status of the dataset export job.

A dataset export job can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED