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

KeyRange

import type { KeyRange } from "https://aws-api.deno.dev/v0.3/services/snowball.ts?docs=full";

Contains a key range. For export jobs, a S3Resource object can have an optional KeyRange value. The length of the range is defined at job creation, and has either an inclusive BeginMarker, an inclusive EndMarker, or both. Ranges are UTF-8 binary sorted.

interface KeyRange {
BeginMarker?: string | null;
EndMarker?: string | null;
}

§Properties

§
BeginMarker?: string | null
[src]

The key that starts an optional key range for an export job. Ranges are inclusive and UTF-8 binary sorted.

§
EndMarker?: string | null
[src]

The key that ends an optional key range for an export job. Ranges are inclusive and UTF-8 binary sorted.