With the PutItem operation of the Amazon S3 DynamoDB Connector, you place an element in a table.
For more information on other operations of the Amazon S3 DynamoDB Connector, see Amazon S3 DynamoDB Connector.
Parameters
|
|
Access key ID for requests to Amazon Web Services (AWS) Note: The credentials are sent to the adapter via parameters. There are various configuration options. For more information, see Setting Up Credentials. Possible values: Any string with the access key ID, e.g. |
|
|
Secret access key for requests to AWS Note: The credentials are sent to the adapter via parameters. There are various configuration options. For more information, see Setting Up Credentials. Possible values: Any string with the secret access key, e.g. |
|
|
Region of the domains Note: Buckets created in a specific region cannot be invoked from another region. For more information, see Regions and Endpoints. Possible values: Any string with the name of the region, e.g. |
|
|
This parameter is required for this operation. Table name Possible values: String with the table name according to the following name rules:
|
|
|
Elements of the primary table key Possible values:
|
|
|
Elements of the primary table key Possible values:
|
|
|
DynamoDB uses eventually consistent reads unless otherwise specified. Read operations such as |
Status values
|
|
The adapter operation was executed successfully |
|
|
The operation was not completed, but no error occurred. |
|
|
The operation failed due to a technical error. |
Input
The adapter expects a predefined XML structure as input.
Note:
There are no restrictions on element names for the PutItem operation. However, the name, value, and type attributes are required.
<?xml version="1.0" encoding="UTF-8"?>
<RootElement>
<Item>
<Attribute name="..Name of PartionKey.." type="..Type of Partition.." value="..Value of PartitionKey.."/>
<Attribute name="..Name of SortKey.." type="..Type of Sort.." value="..Value of SortKey.."/>
<Attribute name="..Attribute Name.." type="..Attribute Type.." value="..Attribute Value.."/>
</Item>
</RootElement>
Output
The adapter places the defined element in the desired table.