Sha256: 4cc71ef0daa8d28376308ef0947d95ca6e0250c46f554afd9f7745236c12c2a7
Contents?: true
Size: 1.13 KB
Versions: 61
Compression:
Stored size: 1.13 KB
Contents
module Fog module AWS class DynamoDB class Real # Delete DynamoDB table # # ==== Parameters # * 'table_name'<~String> - name of table to delete # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'TableDescription'<~Hash> # * 'ProvisionedThroughput'<~Hash>: # * 'ReadCapacityUnits'<~Integer> - read capacity for table, in 5..10000 # * 'WriteCapacityUnits'<~Integer> - write capacity for table, in 5..10000 # * 'TableName'<~String> - name of table # * 'TableStatus'<~String> - status of table # # See DynamoDB Documentation: http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_DeleteTable.html # def delete_table(table_name) body = { 'TableName' => table_name } request( :body => Fog::JSON.encode(body), :headers => {'x-amz-target' => 'DynamoDB_20120810.DeleteTable'}, :idempotent => true ) end end end end end
Version data entries
61 entries across 59 versions & 2 rubygems