Skip to content

Commit 6630c35

Browse files
authored
Merge branch 'main' into merge-back/2.224.0
2 parents 4f4c61e + 97e9ef9 commit 6630c35

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Any code that you submit will be released under that license.
4747
- [Changing the Cloud Assembly Schema](#changing-cloud-assembly-schema)
4848
- [Feature Flags](#feature-flags)
4949
- [Versioning and Release](#versioning-and-release)
50-
- [Troubleshooting](#troubleshooting)
50+
- [Common Issues](#common-issues)
5151
- [Debugging](#debugging)
5252
- [Connecting the VS Code Debugger](#connecting-the-vs-code-debugger)
5353
- [Run a CDK unit test in the debugger](#run-a-cdk-unit-test-in-the-debugger)

allowed-breaking-changes.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4001,3 +4001,4 @@ move:aws-cdk-lib.aws_xray.TransactionSearchConfigReference
40014001
move:aws-cdk-lib.IEnvironmentAware aws-cdk-lib.interfaces.IEnvironmentAware
40024002
move:aws-cdk-lib.ResourceEnvironment aws-cdk-lib.interfaces.ResourceEnvironment
40034003

4004+
removed:aws-cdk-lib.aws_dynamodb.Table.table

packages/aws-cdk-lib/aws-dynamodb/lib/table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1210,7 +1210,7 @@ export class Table extends TableBase {
12101210
*/
12111211
public readonly tableStreamArn: string | undefined;
12121212

1213-
protected readonly table: CfnTable;
1213+
private readonly table: CfnTable;
12141214

12151215
private readonly keySchema = new Array<CfnTable.KeySchemaProperty>();
12161216
private readonly attributeDefinitions = new Array<CfnTable.AttributeDefinitionProperty>();

0 commit comments

Comments
 (0)