(tableName: string, readonly key: any)
| 10 | private deleteBuilder = new ExpressionBuilder(',') |
| 11 | |
| 12 | constructor(tableName: string, readonly key: any) { super(tableName) } |
| 13 | |
| 14 | async run(): Promise<UpdateCommandOutput> { return await this._client!.send(new UpdateCommand(this.build())) } |
| 15 | transactWriteItem(): TransactWriteItem { return { Update: this.build() as any as TransactUpdate } } |
nothing calls this directly
no outgoing calls
no test coverage detected