import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface SecretTargetAttachmentProperties { SecretId: Value; TargetType: Value; TargetId: Value; } export default class SecretTargetAttachment extends ResourceBase { constructor(properties: SecretTargetAttachmentProperties); }