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

PutObjectInput

import type { PutObjectInput } from "https://aws-api.deno.dev/v0.4/services/backupstorage.ts?docs=full";
interface PutObjectInput {
BackupJobId: string;
InlineChunk?: Uint8Array | string | null;
InlineChunkChecksum?: string | null;
InlineChunkChecksumAlgorithm?: string | null;
InlineChunkLength?: number | null;
MetadataString?: string | null;
ObjectChecksum?: string | null;
ObjectChecksumAlgorithm?: SummaryChecksumAlgorithm | null;
ObjectName: string;
ThrowOnDuplicate?: boolean | null;
}

§Properties

§
BackupJobId: string
[src]

Backup job Id for the in-progress backup.

§
InlineChunk?: Uint8Array | string | null
[src]

Inline chunk data to be uploaded.

§
InlineChunkChecksum?: string | null
[src]

Inline chunk checksum

§
InlineChunkChecksumAlgorithm?: string | null
[src]

Inline chunk checksum algorithm

§
InlineChunkLength?: number | null
[src]

Length of the inline chunk data.

§
MetadataString?: string | null
[src]

Store user defined metadata like backup checksum, disk ids, restore metadata etc.

§
ObjectChecksum?: string | null
[src]

object checksum

§
ObjectChecksumAlgorithm?: SummaryChecksumAlgorithm | null
[src]

object checksum algorithm

§
ObjectName: string
[src]

The name of the Object to be uploaded.

§
ThrowOnDuplicate?: boolean | null
[src]

Throw an exception if Object name is already exist.