@allma/core-sdk
Version:
Core SDK with shared utilities (logging, auth, S3 utils) for building on the Allma serverless AI orchestration platform.
20 lines • 612 B
TypeScript
export interface CloudFormationEvent {
RequestType: 'Create' | 'Update' | 'Delete';
ServiceToken: string;
ResponseURL: string;
StackId: string;
RequestId: string;
LogicalResourceId: string;
PhysicalResourceId?: string;
ResourceType: string;
ResourceProperties: {
[key: string]: any;
};
OldResourceProperties?: {
[key: string]: any;
};
}
export declare function sendCloudFormationResponse(event: CloudFormationEvent, status: 'SUCCESS' | 'FAILED', data?: {
[key: string]: any;
}): Promise<void>;
//# sourceMappingURL=cloudformation-utils.d.ts.map