UNPKG

@renovosolutions/cdk-library-aws-sso

Version:
15 lines (14 loc) 293 B
export declare enum PrincipalTypes { USER = "USER", GROUP = "GROUP" } export interface PrincipalProperty { /** * The id of the principal. */ readonly principalId: string; /** * The type of the principal. */ readonly principalType: PrincipalTypes; }