/** * Wrapper class for Custom Domain information */ declare class DomainInfo { domainName: string; domainNameId: string; hostedZoneId: string; securityPolicy: string; /** * Sometimes, the getDomainName call doesn't return either a distributionHostedZoneId or a regionalHostedZoneId. * AFAICT, this only happens with edge-optimized endpoints. * The hostedZoneId for these endpoints is always the one below. * Docs: https://docs.aws.amazon.com/general/latest/gr/rande.html#apigateway_region * PR: https://github.com/amplify-education/serverless-domain-manager/pull/171 */ private defaultHostedZoneId; private defaultSecurityPolicy; private defaultDomainNameId; constructor(data: any); } export = DomainInfo;