Hacktoberfest 2026:メンテナが10月に向けて印を付けた、オープンで初心者向けの issue。 Hacktoberfest の issue を見る

Table Parameter Overrides Not Used When Creating DynamoDB Table

オープン
#4 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
3/5
見積もり時間
1〜2日
初心者へのやさしさ
42/100
issue の種類
バグ
明瞭さ
おおむね明確
活発さ
停滞
技術スタック
aws, python

調査の方向性

まず、ActivitiesTable、その Table パラメータ、および ListActivitiesFunctionRole を含む SAM テンプレートを調査し、デフォルトではないテーブル名を使って sam build と sam deploy --guided で再現します。デプロイされた関数がそのテーブルをスキャンでき、エンドポイントが Access denied exception の代わりに空の画面を表示すれば完了です。

索引モデルが issue の本文から書いたものです。

説明

Describe the bug
A clear and concise description of what the bug is.

To Reproduce
Steps to reproduce the behavior:

  1. sam build
  2. sam deploy --guided
  3. invoke URL from Curl or browser, value found on GET resource in API Gateway console
  4. when prompted for table name, use another value like FBActivities or CodeActivities, rather than default of Activities

You will see "internal server error", and CloudWatch

/aws/lambda/crud-sam-app-ListActivitiesFunction-kVMgyUAS17TY
"Access denied exception when calling Scan operation." ListActivitiesFunctionRole.
arn:aws:dynamodb:us-east-1:654654165497:table/FBActivities

Expected behavior
Should show empty screen

Desktop (please complete the following information):
Windows 11

Additional context
I changed the last line below to make the fix

ActivitiesTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
-
AttributeName: "id"
AttributeType: "S"
-
AttributeName: "date"
AttributeType: "S"
KeySchema:
-
AttributeName: "id"
KeyType: "HASH"
-
AttributeName: "date"
KeyType: "RANGE"
ProvisionedThroughput:
ReadCapacityUnits: "1"
WriteCapacityUnits: "1"
TableName: !Ref Table

主要言語
Python
スター
105
フォーク
64
PR マージ指標
30日以内にマージされた PR はありません

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

似ている issue

Python の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。