@smash-sdk/iam
Version:
21 lines (20 loc) • 461 B
TypeScript
export interface UpdateManagedPolicyInput {
policyId: string;
description?: string;
statement: {
action: string[];
resource: string[];
effect: "Allow" | "Deny";
}[];
}
export interface UpdateManagedPolicyOutput {
policy: {
name: string;
description: string;
statement: {
action: string[];
effect: "Allow" | "Deny";
resource: string[];
}[];
};
}