import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class DnsEntry { DomainName?: Value; HostedZoneId?: Value; constructor(properties: DnsEntry); } export interface ServiceNetworkServiceAssociationProperties { ServiceNetworkIdentifier?: Value; DnsEntry?: DnsEntry; ServiceIdentifier?: Value; Tags?: List; } export default class ServiceNetworkServiceAssociation extends ResourceBase { static DnsEntry: typeof DnsEntry; constructor(properties?: ServiceNetworkServiceAssociationProperties); }