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

EBS

import { EBS } from "https://aws-api.deno.dev/v0.4/services/ebs.ts?docs=full";
class EBS {
constructor(apiFactory: client.ApiFactory);
async completeSnapshot(params: CompleteSnapshotRequest, opts?: client.RequestOptions): Promise<CompleteSnapshotResponse>;
async getSnapshotBlock(params: GetSnapshotBlockRequest, opts?: client.RequestOptions): Promise<GetSnapshotBlockResponse>;
async listChangedBlocks(params: ListChangedBlocksRequest, opts?: client.RequestOptions): Promise<ListChangedBlocksResponse>;
async listSnapshotBlocks(params: ListSnapshotBlocksRequest, opts?: client.RequestOptions): Promise<ListSnapshotBlocksResponse>;
async putSnapshotBlock(params: PutSnapshotBlockRequest, opts?: client.RequestOptions): Promise<PutSnapshotBlockResponse>;
async startSnapshot(params: StartSnapshotRequest, opts?: client.RequestOptions): Promise<StartSnapshotResponse>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new EBS(apiFactory: client.ApiFactory)
[src]

§Methods

§

Seals and completes the snapshot after all of the required blocks of data have been written to it. Completing the snapshot changes the status to completed. You cannot write new blocks to a snapshot after it has been completed.

§

Returns the data in a block in an Amazon Elastic Block Store snapshot.

§

Returns information about the blocks that are different between two Amazon Elastic Block Store snapshots of the same volume/snapshot lineage.

§

Returns information about the blocks in an Amazon Elastic Block Store snapshot.

§

Writes a block of data to a snapshot. If the specified block contains data, the existing data is overwritten. The target snapshot must be in the pending state.

Data written to a snapshot must be aligned with 512-KiB sectors.

§

Creates a new Amazon EBS snapshot. The new snapshot enters the pending state after the request completes.

After creating the snapshot, use PutSnapshotBlock to write blocks of data to the snapshot.

§Static Properties