import { RoleEnum } from './RoleEnum';
/** An IAM Group */
export interface Group {
    /** Creation date of this group */
    creation: string;
    /** Whether it is a default group. This kind of group can't be edited or deleted */
    defaultGroup: boolean;
    /** Group's description */
    description?: string;
    /** Last update of this group */
    lastUpdate: string;
    /** Group's name */
    name: string;
    /** Group's role */
    role: RoleEnum;
    /** IAM identity URN of the group */
    urn: string;
}
//# sourceMappingURL=Group.d.ts.map