UNPKG

@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.

9 lines (8 loc) 440 B
import { Stack, StackProps } from "aws-cdk-lib"; import { Construct } from "constructs"; import { RepositoryConnection } from "./repository_connection"; import { HostingConfiguration } from "../bin/cli/shared/types"; export declare class RepositoryStack extends Stack { readonly repositoryConnection: RepositoryConnection; constructor(scope: Construct, id: string, hostingConfiguration: HostingConfiguration, props?: StackProps); }