@@ -25,34 +25,34 @@ For more information, see
25
25
26
26
Code excerpts that show you how to call individual service functions.
27
27
28
- * [ Creating a table] ( dynamodb_basics/GettingStartedWithDynamoDB.php ) (` create_table ` )
29
- * [ Deleting a table] ( DynamoDBService.php ) (` delete_table ` )
30
- * [ Deleting an item from a table] ( dynamodb_basics/GettingStartedWithDynamoDB.php ) (` delete_item ` )
31
- * [ Getting an item from a table] ( dynamodb_basics/GettingStartedWithDynamoDB.php ) (` get_item ` )
32
- * [ Putting an item into a table] ( dynamodb_basics/GettingStartedWithDynamoDB.php ) (` put_item ` )
33
- * [ Putting items loaded from a JSON file into a table] ( dynamodb_basics/GettingStartedWithDynamoDB.php )
28
+ * [ Create a table] ( dynamodb_basics/GettingStartedWithDynamoDB.php ) (` create_table ` )
29
+ * [ Delete a table] ( DynamoDBService.php ) (` delete_table ` )
30
+ * [ Delete an item from a table] ( dynamodb_basics/GettingStartedWithDynamoDB.php ) (` delete_item ` )
31
+ * [ Get an item from a table] ( dynamodb_basics/GettingStartedWithDynamoDB.php ) (` get_item ` )
32
+ * [ Put an item into a table] ( dynamodb_basics/GettingStartedWithDynamoDB.php ) (` put_item ` )
33
+ * [ Put items loaded from a JSON file into a table] ( dynamodb_basics/GettingStartedWithDynamoDB.php )
34
34
(` put_item ` )
35
- * [ Querying items by using a key condition expression] ( dynamodb_basics/GettingStartedWithDynamoDB.php )
35
+ * [ Query items by using a key condition expression] ( dynamodb_basics/GettingStartedWithDynamoDB.php )
36
36
(` query ` )
37
- * [ Scanning a table for items] ( dynamodb_basics/GettingStartedWithDynamoDB.php )
37
+ * [ Scan a table for items] ( dynamodb_basics/GettingStartedWithDynamoDB.php )
38
38
(` scan ` )
39
- * [ Updating an item in a table] ( dynamodb_basics/GettingStartedWithDynamoDB.php )
39
+ * [ Update an item in a table] ( dynamodb_basics/GettingStartedWithDynamoDB.php )
40
40
(` update_item ` )
41
- * [ Creating an item in a table with PartiQL] ( partiql_basics/GettingStartedWithPartiQL.php )
41
+ * [ Create an item in a table with PartiQL] ( partiql_basics/GettingStartedWithPartiQL.php )
42
42
(` executeStatement - INSERT ` )
43
- * [ Getting an item in a table with PartiQL] ( partiql_basics/GettingStartedWithPartiQL.php )
43
+ * [ Get an item in a table with PartiQL] ( partiql_basics/GettingStartedWithPartiQL.php )
44
44
(` executeStatement - SELECT ` )
45
- * [ Updating an item in a table with PartiQL] ( partiql_basics/GettingStartedWithPartiQL.php )
45
+ * [ Update an item in a table with PartiQL] ( partiql_basics/GettingStartedWithPartiQL.php )
46
46
(` executeStatement - UPDATE ` )
47
- * [ Deleting an item in a table with PartiQL] ( partiql_basics/GettingStartedWithPartiQL.php )
47
+ * [ Delete an item in a table with PartiQL] ( partiql_basics/GettingStartedWithPartiQL.php )
48
48
(` executeStatement - DELETE ` )
49
- * [ Creating an item in a table with PartiQL - BatchExecuteStatement] ( partiql_basics/GettingStartedWithPartiQLBatch.php )
49
+ * [ Create an item in a table with PartiQL - BatchExecuteStatement] ( partiql_basics/GettingStartedWithPartiQLBatch.php )
50
50
(` executeStatement - INSERT ` )
51
- * [ Getting an item in a table with PartiQL - BatchExecuteStatement] ( partiql_basics/GettingStartedWithPartiQLBatch.php )
51
+ * [ Get an item in a table with PartiQL - BatchExecuteStatement] ( partiql_basics/GettingStartedWithPartiQLBatch.php )
52
52
(` executeStatement - SELECT ` )
53
- * [ Updating an item in a table with PartiQL - BatchExecuteStatement] ( partiql_basics/GettingStartedWithPartiQLBatch.php )
53
+ * [ Update an item in a table with PartiQL - BatchExecuteStatement] ( partiql_basics/GettingStartedWithPartiQLBatch.php )
54
54
(` executeStatement - UPDATE ` )
55
- * [ Deleting an item in a table with PartiQL - BatchExecuteStatement] ( partiql_basics/GettingStartedWithPartiQLBatch.php )
55
+ * [ Delete an item in a table with PartiQL - BatchExecuteStatement] ( partiql_basics/GettingStartedWithPartiQLBatch.php )
56
56
(` executeStatement - DELETE ` )
57
57
58
58
### Scenario examples
0 commit comments