import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface PolicyPrincipalAttachmentProperties { PolicyName: Value; Principal: Value; } export default class PolicyPrincipalAttachment extends ResourceBase { constructor(properties: PolicyPrincipalAttachmentProperties); }