File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
packages/aws-cdk-lib/aws-dynamodb/lib Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change @@ -4001,3 +4001,4 @@ move:aws-cdk-lib.aws_xray.TransactionSearchConfigReference
40014001move:aws-cdk-lib.IEnvironmentAware aws-cdk-lib.interfaces.IEnvironmentAware
40024002move:aws-cdk-lib.ResourceEnvironment aws-cdk-lib.interfaces.ResourceEnvironment
40034003
4004+ removed:aws-cdk-lib.aws_dynamodb.Table.table
Original file line number Diff line number Diff 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 > ( ) ;
You can’t perform that action at this time.
0 commit comments