Delete Schemas
Executing a Delete Updategram
The Id is required for deletes. Delete updategrams have a before block and an empty after block. This declares that the item specified in the before block is to be deleted. If multiple before sections are specified, the adapter will execute the deletes in bulk.Delete Instance
Below is an instance of a delete request.
<ns0:parameters xmlns:ns0="http://www.cdata.com/AmazonDynamoDBProvider/2020"> <ns0:sync> <ns0:before> <ns0:Account Id="1"></ns0:Account> </ns0:before> <ns0:after></ns0:after> </ns0:sync> </ns0:parameters>
Delete Schema
Below is a delete schema. The response contains the number of affected rows.
<?xml version="1.0" encoding="utf-16" ?> <xs:schema xmlns:b="http://schemas.microsoft.com/BizTalk/2003" attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.cdata.com/AmazonDynamoDBProvider/2020" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="parameters"> <xs:complexType> <xs:sequence> <xs:element name="sync"> <xs:complexType> <xs:sequence> <xs:element name="before"> <xs:complexType> <xs:sequence> <xs:element name="Account"> <xs:complexType> <xs:attribute name="Id" type="xs:string" /> <xs:attribute name="Id" type="xs:string" /> <xs:attribute name="Name" type="xs:string" /> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> </xs:sequence> </xs:complexType> </xs:element> </xs:schema>