UNPKG

@smash-sdk/iam

Version:
15 lines (14 loc) 301 B
export interface GetPolicyInput { policyId: string; } export interface GetPolicyOutput { policy: { name: string; description: string; statement: { action: string[]; effect: "Allow" | "Deny"; resource: string[]; }[]; }; }