├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEPLOY.md ├── DEPLOY_ja.md ├── LICENSE ├── README.md ├── README_ja.md ├── bin ├── cdk_test.ts └── whats-new-summary-notifier.ts ├── cdk.context.json ├── cdk.json ├── doc ├── architecture.png ├── example_en.png └── example_ja.png ├── eslint.config.mjs ├── lambda ├── notify-to-app │ ├── index.py │ └── requirements.txt └── rss-crawler │ ├── index.py │ └── requirements.txt ├── lib └── whats-new-summary-notifier-stack.ts ├── package.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEPLOY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/DEPLOY.md -------------------------------------------------------------------------------- /DEPLOY_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/DEPLOY_ja.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/README.md -------------------------------------------------------------------------------- /README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/README_ja.md -------------------------------------------------------------------------------- /bin/cdk_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/bin/cdk_test.ts -------------------------------------------------------------------------------- /bin/whats-new-summary-notifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/bin/whats-new-summary-notifier.ts -------------------------------------------------------------------------------- /cdk.context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/cdk.context.json -------------------------------------------------------------------------------- /cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/cdk.json -------------------------------------------------------------------------------- /doc/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/doc/architecture.png -------------------------------------------------------------------------------- /doc/example_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/doc/example_en.png -------------------------------------------------------------------------------- /doc/example_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/doc/example_ja.png -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lambda/notify-to-app/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/lambda/notify-to-app/index.py -------------------------------------------------------------------------------- /lambda/notify-to-app/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | boto3 >= 1.34.64 -------------------------------------------------------------------------------- /lambda/rss-crawler/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/lambda/rss-crawler/index.py -------------------------------------------------------------------------------- /lambda/rss-crawler/requirements.txt: -------------------------------------------------------------------------------- 1 | feedparser 2 | python-dateutil -------------------------------------------------------------------------------- /lib/whats-new-summary-notifier-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/lib/whats-new-summary-notifier-stack.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/whats-new-summary-notifier/HEAD/tsconfig.json --------------------------------------------------------------------------------