File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
dotnetv4/DynamoDB/Actions Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1878,6 +1878,9 @@ dynamodb_Scenario_GettingStartedMovies:
18781878 - description :
18791879 snippet_tags :
18801880 - DynamoDB.dotnetv4.DynamoDB_Basics_Scenario
1881+ - description : Use the injected client for table operations.
1882+ snippet_tags :
1883+ - DynamoDB.dotnetv4.dynamodb-basics.DynamoDbWrapper
18811884 - description : Creates a table to contain movie data.
18821885 snippet_tags :
18831886 - DynamoDB.dotnetv4.dynamodb-basics.CreateTable
Original file line number Diff line number Diff line change 11// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22// SPDX-License-Identifier: Apache-2.0
33
4+ // snippet-start:[DynamoDB.dotnetv4.dynamodb-basics.DynamoDbWrapper]
45using System . Text . Json ;
56using Amazon . DynamoDBv2 ;
67using Amazon . DynamoDBv2 . DataModel ;
@@ -24,6 +25,8 @@ public DynamoDbWrapper(IAmazonDynamoDB amazonDynamoDB)
2425 {
2526 _amazonDynamoDB = amazonDynamoDB ;
2627 }
28+ // snippet-end:[DynamoDB.dotnetv4.dynamodb-basics.DynamoDbWrapper]
29+
2730 // snippet-start:[DynamoDB.dotnetv4.dynamodb-basics.CreateTable]
2831
2932 /// <summary>
You can’t perform that action at this time.
0 commit comments