dynatron
Version:
The most advanced ORM for AWS DynamoDB
14 lines (13 loc) • 590 B
TypeScript
import { UpdateTimeToLiveInput } from "@aws-sdk/client-dynamodb";
import { Request } from "../_core/request";
import { DynatronClient } from "../../dynatron";
import { BUILD } from "../../utils/misc-utils";
export declare class TableTTLUpdate extends Request {
protected readonly client: DynatronClient;
protected parameters: UpdateTimeToLiveInput;
constructor(client: DynatronClient, parameters: UpdateTimeToLiveInput);
[BUILD](): UpdateTimeToLiveInput;
$: () => Promise<{
data: import("@aws-sdk/client-dynamodb").TimeToLiveSpecification | undefined;
}>;
}