import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export interface UserPoolUserToGroupAttachmentProperties { GroupName: Value; UserPoolId: Value; Username: Value; } export default class UserPoolUserToGroupAttachment extends ResourceBase { constructor(properties: UserPoolUserToGroupAttachmentProperties); }