aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
14 lines (13 loc) • 486 B
TypeScript
import { 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;