for await()

in lib/apitools.ts [39:49]


  for await (const page of paginator) {
    page.Items?.forEach(item => {
      const record: DeploymentRecord = {
        id: item.id.S as string,
        type: item.type.S as string,
        account: item.account.S as string,
        region: item.region.S as string,
      };
      records.push(record);
    });
  }