import { Construct } from "@aws-cdk/core"; /** * Properties to configure an HTTPS Redirect */ export interface RedirectSiteProps { /** * The apex domain name * @example "247studios.ca" */ readonly domainName: string; /** * The redirect target domain * @example "www.247studios.ca" */ readonly targetDomain: string; /** * The domain names to create that will redirect to `targetDomain` * @example ["247studios.ca"] */ readonly recordNames: string[]; } /** * Allows creating a domainA -> domainB redirect using CloudFront and S3. * You can specify multiple domains to be redirected. */ export declare class RedirectSite extends Construct { constructor(scope: Construct, id: string, props: RedirectSiteProps); }