14 lines
491 B
TypeScript
14 lines
491 B
TypeScript
import type { DynamoAttributeValue } from '../shared-types';
|
|
export declare enum DynamoMethod {
|
|
GET = "Get",
|
|
PUT = "Put",
|
|
DELETE = "Delete",
|
|
UPDATE = "Update"
|
|
}
|
|
export declare function getDynamoResourceArn(method: DynamoMethod): string;
|
|
export declare function transformAttributeValueMap(attrMap?: {
|
|
[key: string]: DynamoAttributeValue;
|
|
}): any;
|
|
export declare function validateJsonPath(value: string): void;
|
|
export declare function validateJsonata(value: string): void;
|