We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 874d18e commit 507f6e7Copy full SHA for 507f6e7
docs/low_level.rst
@@ -80,8 +80,22 @@ but here is a low level example to demonstrate the point:
80
}
81
]
82
83
- conn.create_table('tablename', **kwargs)
+ conn.create_table('table_name', **kwargs)
84
85
+You can also use `update_table` to change the Provisioned Throughput capacity of Global Secondary Indexes:
86
+
87
+.. code-block:: python
88
89
+ >>> kwargs = {
90
+ 'global_secondary_index_updates': [
91
+ {
92
+ 'index_name': 'index_name',
93
+ 'read_capacity_units': 10,
94
+ 'write_capacity_units': 10
95
+ }
96
+ ]
97
98
+ >>> conn.update_table('table_name', **kwargs)
99
100
Modifying items
101
^^^^^^^^^^^^^^^
0 commit comments