import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class DnsEntry { DomainName?: Value; HostedZoneId?: Value; constructor(properties: DnsEntry); } export interface ServiceProperties { DnsEntry?: DnsEntry; CustomDomainName?: Value; AuthType?: Value; Tags?: List; Name?: Value; CertificateArn?: Value; } export default class Service extends ResourceBase { static DnsEntry: typeof DnsEntry; constructor(properties?: ServiceProperties); }