UNPKG

@smash-sdk/iam

Version:
19 lines (18 loc) 405 B
export interface GetRoleInput { roleId: string; } export interface GetRoleOutput { role: { name: string; description: string; policies: { name: string; description: string; statement: { action: string[]; effect: "Allow" | "Deny"; resource: string[]; }[]; }[]; }; }