Stay up to date with the latest from the Knowledge Center. See all new and updated Knowledge Center articles published in the last month and re:Post’s top contributors.
All Content tagged with エッジコンピューティング
コンテンツの言語: 日本語
フィルターするタグを選択する
並べ替え 最新
1件の結果
CloudFront で /path へのリクエストに対し Function を実行するようにしている。
/path?a=10&=foo のようなクエリ文字列と共にリクエストした時、event.request.querystring で取得されるオブジェクトは
```
{a: { value: 10 }, foo: { value: '' }}
```
のような構造になる。
本来は
...