Chilkat Examples

ChilkatHOMEAndroid™Classic ASPCC++C#Mono C#.NET Core C#C# UWP/WinRTDataFlexDelphi ActiveXDelphi DLLVisual FoxProJavaLianjaMFCObjective-CPerlPHP ActiveXPHP ExtensionPowerBuilderPowerShellPureBasicCkPythonChilkat2-PythonRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++Visual Basic 6.0VB.NETVB.NET UWP/WinRTVBScriptXojo PluginNode.jsExcelGo

MFC Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Bitfinex v2 REST
Bluzone
BrickLink
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter
UniPin
VoiceBase
Vonage
Walmart
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yousign
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(MFC) DynamoDB - DeleteTable

The DeleteTable operation deletes a table and all of its items. After a DeleteTable request, the specified table is in the DELETING state until DynamoDB completes the deletion.

For more information, see https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_DeleteTable.html

Chilkat C/C++ Library Downloads

MS Visual C/C++ Libs

See Also: Using MFC CString in Chilkat

#include <CkRest.h>
#include <CkAuthAws.h>
#include <CkJsonObject.h>
#include <CkStringBuilder.h>

void ChilkatSample(void)
    {
    CkString strOut;

    CkRest rest;
    bool success;

    // Implements the following CURL command:

    // curl -X POST https://dynamodb.us-west-2.amazonaws.com/ \
    //   -H "Accept-Encoding: identity" \
    //   -H "Content-Type: application/x-amz-json-1.0" \
    //   -H "Authorization: AWS4-HMAC-SHA256 Credential=<Credential>, SignedHeaders=<Headers>, Signature=<Signature>" \
    //   -H "X-Amz-Date: <Date>" \
    //   -H "X-Amz-Target: DynamoDB_20120810.DeleteTable" \
    //   -d '{
    //     "TableName": "Thread"
    // }'

    // Use the following online tool to generate REST code from a CURL command
    // Convert a cURL Command to REST Source Code

    CkAuthAws authAws;
    authAws.put_AccessKey("AWS_ACCESS_KEY");
    authAws.put_SecretKey("AWS_SECRET_KEY");
    // Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
    authAws.put_Region("us-west-2");
    authAws.put_ServiceName("dynamodb");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.SetAuthAws(authAws);

    // URL: https://dynamodb.us-west-2.amazonaws.com/
    bool bTls = true;
    int port = 443;
    bool bAutoReconnect = true;
    // Don't forget to change the region domain (us-west-2.amazonaws.com) to your particular region.
    success = rest.Connect("dynamodb.us-west-2.amazonaws.com",port,bTls,bAutoReconnect);
    if (success != true) {
        strOut.append("ConnectFailReason: ");
        strOut.appendInt(rest.get_ConnectFailReason());
        strOut.append("\r\n");
        strOut.append(rest.lastErrorText());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    // Note: The above code does not need to be repeatedly called for each REST request.
    // The rest object can be setup once, and then many requests can be sent.  Chilkat will automatically
    // reconnect within a FullRequest* method as needed.  It is only the very first connection that is explicitly
    // made via the Connect method.

    // Use this online tool to generate code from sample JSON:
    // Generate Code to Create JSON

    // The following JSON is sent in the request body.

    // {
    //   "TableName": "Thread"
    // }

    CkJsonObject json;
    json.UpdateString("TableName","Thread");

    rest.AddHeader("Content-Type","application/x-amz-json-1.0");
    rest.AddHeader("X-Amz-Target","DynamoDB_20120810.DeleteTable");
    rest.AddHeader("Accept-Encoding","identity");

    CkStringBuilder sbRequestBody;
    json.EmitSb(sbRequestBody);
    CkStringBuilder sbResponseBody;
    success = rest.FullRequestSb("POST","/",sbRequestBody,sbResponseBody);
    if (success != true) {
        strOut.append(rest.lastErrorText());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    int respStatusCode = rest.get_ResponseStatusCode();
    strOut.append("response status code = ");
    strOut.appendInt(respStatusCode);
    strOut.append("\r\n");
    if (respStatusCode >= 400) {
        strOut.append("Response Status Code = ");
        strOut.appendInt(respStatusCode);
        strOut.append("\r\n");
        strOut.append("Response Header:");
        strOut.append("\r\n");
        strOut.append(rest.responseHeader());
        strOut.append("\r\n");
        strOut.append("Response Body:");
        strOut.append("\r\n");
        strOut.append(sbResponseBody.getAsString());
        strOut.append("\r\n");
        SetDlgItemText(IDC_EDIT1,strOut.getUnicode());
        return;
    }

    CkJsonObject jsonResponse;
    jsonResponse.LoadSb(sbResponseBody);

    jsonResponse.put_EmitCompact(false);
    strOut.append(jsonResponse.emit());
    strOut.append("\r\n");

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "TableDescription": {
    //     "TableArn": "arn:aws:dynamodb:us-west-2:123456789012:table/Thread",
    //     "ItemCount": 0,
    //     "ProvisionedThroughput": {
    //       "NumberOfDecreasesToday": 0,
    //       "ReadCapacityUnits": 5,
    //       "WriteCapacityUnits": 5
    //     },
    //     "TableName": "Thread",
    //     "TableSizeBytes": 0,
    //     "TableStatus": "DELETING"
    //   }
    // }

    // Sample code for parsing the JSON response...
    // Use the following online tool to generate parsing code from sample JSON:
    // Generate Parsing Code from JSON

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
    // See this example explaining how this memory should be used: const char * functions.

    const char *TableDescriptionTableArn = jsonResponse.stringOf("TableDescription.TableArn");
    int TableDescriptionItemCount = jsonResponse.IntOf("TableDescription.ItemCount");
    int TableDescriptionProvisionedThroughputNumberOfDecreasesToday = jsonResponse.IntOf("TableDescription.ProvisionedThroughput.NumberOfDecreasesToday");
    int TableDescriptionProvisionedThroughputReadCapacityUnits = jsonResponse.IntOf("TableDescription.ProvisionedThroughput.ReadCapacityUnits");
    int TableDescriptionProvisionedThroughputWriteCapacityUnits = jsonResponse.IntOf("TableDescription.ProvisionedThroughput.WriteCapacityUnits");
    const char *TableDescriptionTableName = jsonResponse.stringOf("TableDescription.TableName");
    int TableDescriptionTableSizeBytes = jsonResponse.IntOf("TableDescription.TableSizeBytes");
    const char *TableDescriptionTableStatus = jsonResponse.stringOf("TableDescription.TableStatus");


    SetDlgItemText(IDC_EDIT1,strOut.getUnicode());

    }

 

© 2000-2022 Chilkat Software, Inc. All Rights Reserved.