This repository has been archived on 2026-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
next-deploy/packages/aws-iam-role/types.d.ts

11 lines
161 B
TypeScript

export type Role = {
name?: string;
region?: string;
policy?: Policy;
service?: string | string[];
arn?: string;
};
type Policy = {
arn: string;
};