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

DataTransfer

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

Defines the real-time status of a Snow device's data transfer while the device is at Amazon Web Services. This data is only available while a job has a JobState value of InProgress, for both import and export jobs.

interface DataTransfer {
BytesTransferred?: number | null;
ObjectsTransferred?: number | null;
TotalBytes?: number | null;
TotalObjects?: number | null;
}

§Properties

§
BytesTransferred?: number | null
[src]

The number of bytes transferred between a Snow device and Amazon S3.

§
ObjectsTransferred?: number | null
[src]

The number of objects transferred between a Snow device and Amazon S3.

§
TotalBytes?: number | null
[src]

The total bytes of data for a transfer between a Snow device and Amazon S3. This value is set to 0 (zero) until all the keys that will be transferred have been listed.

§
TotalObjects?: number | null
[src]

The total number of objects for a transfer between a Snow device and Amazon S3. This value is set to 0 (zero) until all the keys that will be transferred have been listed.