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

DatastorePartition

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

A single dimension to partition a data store. The dimension must be an AttributePartition or a TimestampPartition.

interface DatastorePartition {
attributePartition?: Partition | null;
timestampPartition?: TimestampPartition | null;
}

§Properties

§
attributePartition?: Partition | null
[src]

A partition dimension defined by an attributeName.

§
timestampPartition?: TimestampPartition | null
[src]

A partition dimension defined by a timestamp attribute.