@seasketch/geoprocessing
Version:
Geoprocessing and reporting framework for SeaSketch 2.0
12 lines (11 loc) • 532 B
TypeScript
import { GeoprocessingStack } from "./GeoprocessingStack.js";
import { Bucket } from "aws-cdk-lib/aws-s3";
import { CloudFrontWebDistribution } from "aws-cdk-lib/aws-cloudfront";
/**
* Create client bucket and deploy client build into it. Serve via Cloudfront
*/
export declare const createClientResources: (stack: GeoprocessingStack) => {
clientBucket: Bucket | undefined;
clientDistribution: CloudFrontWebDistribution | undefined;
};
export declare const setupClientFunctionAccess: (stack: GeoprocessingStack) => void;