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

PutChunkInput

import type { PutChunkInput } from "https://aws-api.deno.dev/v0.4/services/backupstorage.ts?docs=full";
interface PutChunkInput {
BackupJobId: string;
Checksum: string;
ChecksumAlgorithm: DataChecksumAlgorithm;
ChunkIndex: number;
Data: Uint8Array | string;
Length: number;
UploadId: string;
}

§Properties

§
BackupJobId: string
[src]

Backup job Id for the in-progress backup.

§
Checksum: string
[src]

Data checksum

§
ChecksumAlgorithm: DataChecksumAlgorithm
[src]

Checksum algorithm

§
ChunkIndex: number
[src]

Describes this chunk's position relative to the other chunks

§
Data: Uint8Array | string
[src]

Data to be uploaded

§
Length: number
[src]

Data length

§
UploadId: string
[src]

Upload Id for the in-progress upload.