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

CompleteSnapshotRequest

import type { CompleteSnapshotRequest } from "https://aws-api.deno.dev/v0.4/services/ebs.ts?docs=full";
interface CompleteSnapshotRequest {
ChangedBlocksCount: number;
Checksum?: string | null;
ChecksumAggregationMethod?: ChecksumAggregationMethod | null;
ChecksumAlgorithm?: ChecksumAlgorithm | null;
SnapshotId: string;
}

§Properties

§
ChangedBlocksCount: number
[src]

The number of blocks that were written to the snapshot.

§
Checksum?: string | null
[src]

An aggregated Base-64 SHA256 checksum based on the checksums of each written block.

To generate the aggregated checksum using the linear aggregation method, arrange the checksums for each written block in ascending order of their block index, concatenate them to form a single string, and then generate the checksum on the entire string using the SHA256 algorithm.

§
ChecksumAggregationMethod?: ChecksumAggregationMethod | null
[src]

The aggregation method used to generate the checksum. Currently, the only supported aggregation method is LINEAR.

§
ChecksumAlgorithm?: ChecksumAlgorithm | null
[src]

The algorithm used to generate the checksum. Currently, the only supported algorithm is SHA256.

§
SnapshotId: string
[src]

The ID of the snapshot.