Skip to content

Commit

Permalink
rename table
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesKonings committed Dec 16, 2023
1 parent 5b48bf3 commit 4ec6618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class CdkNotfifierFeatureStackExample extends Stack {
super(scope, id, props);

new dynamodb.Table(this, 'Table', {
tableName: `Table-${branchName}`,
tableName: `Table-rename-${branchName}`,
partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING },
billingMode: dynamodb.BillingMode.PAY_PER_REQUEST,
});
Expand Down

0 comments on commit 4ec6618

Please sign in to comment.