/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * The AWS::Amplify::Domain resource allows you to connect a custom domain to your app. */ export interface AwsAmplifyDomain { AppId: string; Arn?: string; AutoSubDomainCreationPatterns?: string[]; AutoSubDomainIAMRole?: string; CertificateRecord?: string; DomainName: string; DomainStatus?: string; EnableAutoSubDomain?: boolean; StatusReason?: string; /** * @maxItems 255 */ SubDomainSettings: SubDomainSetting[]; } export interface SubDomainSetting { Prefix: string; BranchName: string; }