import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface NetworkInterfaceAttachmentProperties { DeleteOnTermination?: Value; DeviceIndex: Value; InstanceId: Value; NetworkInterfaceId: Value; } export default class NetworkInterfaceAttachment extends ResourceBase { constructor(properties: NetworkInterfaceAttachmentProperties); }