summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Garnaat <mitch@garnaat.com>2012-02-10 07:30:29 -0800
committerMitch Garnaat <mitch@garnaat.com>2012-02-10 07:30:29 -0800
commit0f16d4667f7a5b16aadcaec030de8407af4a7226 (patch)
treef6518115ceff4a33ff636b8d8d42429faf0e0719
parent0b266d419189fd8fdaef7abd17aac8683a789d5e (diff)
downloadboto-0f16d4667f7a5b16aadcaec030de8407af4a7226.tar.gz
Fixing some docstrings.
-rw-r--r--boto/dynamodb/layer1.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/boto/dynamodb/layer1.py b/boto/dynamodb/layer1.py
index f7606690..72d9a58d 100644
--- a/boto/dynamodb/layer1.py
+++ b/boto/dynamodb/layer1.py
@@ -178,7 +178,7 @@ class Layer1(AWSAuthConnection):
table was created.
:type table_name: str
- :param table_name: The name of the table to delete.
+ :param table_name: The name of the table to describe.
"""
data = {'TableName' : table_name}
json_input = json.dumps(data)
@@ -193,7 +193,7 @@ class Layer1(AWSAuthConnection):
table will be ACTIVE.
:type table_name: str
- :param table_name: The name of the table to delete.
+ :param table_name: The name of the table to create.
:type schema: dict
:param schema: A Python version of the KeySchema data structure
@@ -217,7 +217,7 @@ class Layer1(AWSAuthConnection):
Updates the provisioned throughput for a given table.
:type table_name: str
- :param table_name: The name of the table to delete.
+ :param table_name: The name of the table to update.
:type provisioned_throughput: dict
:param provisioned_throughput: A Python version of the
@@ -249,7 +249,7 @@ class Layer1(AWSAuthConnection):
the supplied key.
:type table_name: str
- :param table_name: The name of the table to delete.
+ :param table_name: The name of the table containing the item.
:type key: dict
:param key: A Python version of the Key data structure
@@ -306,7 +306,7 @@ class Layer1(AWSAuthConnection):
expected rule.
:type table_name: str
- :param table_name: The name of the table to delete.
+ :param table_name: The name of the table in which to put the item.
:type item: dict
:param item: A Python version of the Item data structure
@@ -384,7 +384,7 @@ class Layer1(AWSAuthConnection):
expected rule.
:type table_name: str
- :param table_name: The name of the table to delete.
+ :param table_name: The name of the table containing the item.
:type key: dict
:param key: A Python version of the Key data structure
@@ -421,7 +421,7 @@ class Layer1(AWSAuthConnection):
which is passed as is to DynamoDB.
:type table_name: str
- :param table_name: The name of the table to delete.
+ :param table_name: The name of the table to query.
:type hash_key_value: dict
:param key: A DynamoDB-style HashKeyValue.