10_DeletingTable.cs
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX - License - Identifier: Apache - 2.0 using System; using System.Threading.Tasks; namespace DynamoDB_intro { public static partial class DdbIntro { public static async Task<bool> DeletingTable_async(string tableName) { var tblDelete = await Client.DeleteTableAsync(tableName); return true; } }
Sample Details
Service: dynamodb
Last tested:
Author: AWS
Type: full-example