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

GetSnapshotBlockResponse

import type { GetSnapshotBlockResponse } from "https://aws-api.deno.dev/v0.4/services/ebs.ts?docs=full";
interface GetSnapshotBlockResponse {
BlockData?: ReadableStream<Uint8Array> | null;
Checksum?: string | null;
ChecksumAlgorithm?: ChecksumAlgorithm | null;
DataLength?: number | null;
}

§Properties

§
BlockData?: ReadableStream<Uint8Array> | null
[src]

The data content of the block.

§
Checksum?: string | null
[src]

The checksum generated for the block, which is Base64 encoded.

§
ChecksumAlgorithm?: ChecksumAlgorithm | null
[src]

The algorithm used to generate the checksum for the block, such as SHA256.

§
DataLength?: number | null
[src]

The size of the data in the block.