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

ExportJobResponse

import type { ExportJobResponse } from "https://aws-api.deno.dev/v0.4/services/pinpoint.ts?docs=full";

Provides information about the status and settings of a job that exports endpoint definitions to a file. The file can be added directly to an Amazon Simple Storage Service (Amazon S3) bucket by using the Amazon Pinpoint API or downloaded directly to a computer by using the Amazon Pinpoint console.

interface ExportJobResponse {
ApplicationId: string;
CompletedPieces?: number | null;
CompletionDate?: string | null;
CreationDate: string;
Definition: ExportJobResource;
FailedPieces?: number | null;
Failures?: string[] | null;
Id: string;
JobStatus: JobStatus;
TotalFailures?: number | null;
TotalPieces?: number | null;
TotalProcessed?: number | null;
Type: string;
}

§Properties

§
ApplicationId: string
[src]

The unique identifier for the application that's associated with the export job.

§
CompletedPieces?: number | null
[src]

The number of pieces that were processed successfully (completed) by the export job, as of the time of the request.

§
CompletionDate?: string | null
[src]

The date, in ISO 8601 format, when the export job was completed.

§
CreationDate: string
[src]

The date, in ISO 8601 format, when the export job was created.

§

The resource settings that apply to the export job.

§
FailedPieces?: number | null
[src]

The number of pieces that weren't processed successfully (failed) by the export job, as of the time of the request.

§
Failures?: string[] | null
[src]

An array of entries, one for each of the first 100 entries that weren't processed successfully (failed) by the export job, if any.

§
Id: string
[src]

The unique identifier for the export job.

§
JobStatus: JobStatus
[src]

The status of the export job. The job status is FAILED if Amazon Pinpoint wasn't able to process one or more pieces in the job.

§
TotalFailures?: number | null
[src]

The total number of endpoint definitions that weren't processed successfully (failed) by the export job, typically because an error, such as a syntax error, occurred.

§
TotalPieces?: number | null
[src]

The total number of pieces that must be processed to complete the export job. Each piece consists of an approximately equal portion of the endpoint definitions that are part of the export job.

§
TotalProcessed?: number | null
[src]

The total number of endpoint definitions that were processed by the export job.

§
Type: string
[src]

The job type. This value is EXPORT for export jobs.