@aws/cloudfront-hosting-toolkit
Version:
CloudFront Hosting Toolkit offers the convenience of a managed frontend hosting service while retaining full control over the hosting and deployment infrastructure to make it your own.
17 lines (16 loc) • 561 B
TypeScript
import { Stack, StackProps } from "aws-cdk-lib";
import { Construct } from "constructs";
import { HostingConfiguration } from "../bin/cli/shared/types";
import { Hosting } from "./hosting";
interface IParamProps {
hostingConfiguration: HostingConfiguration;
buildFilePath: string;
cffSourceFilePath: string;
connectionArn?: string;
certificateArn?: string;
}
export declare class HostingStack extends Stack {
readonly hosting: Hosting;
constructor(scope: Construct, id: string, params: IParamProps, props?: StackProps);
}
export {};