UNPKG

597 BTypeScriptView Raw
1import * as AWSLambda from 'aws-lambda';
2/**
3 * Serialized form of the physical resource id for use in the operation parameters
4 */
5export declare const PHYSICAL_RESOURCE_ID_REFERENCE = "PHYSICAL:RESOURCEID:";
6/**
7 * Flattens a nested object
8 *
9 * @param object the object to be flattened
10 * @returns a flat object with path as keys
11 */
12export declare function flatten(object: object): {
13 [key: string]: any;
14};
15export declare function forceSdkInstallation(): void;
16export declare function handler(event: AWSLambda.CloudFormationCustomResourceEvent, context: AWSLambda.Context): Promise<void>;