# File lib/fog/aws/requests/dynamodb/create_table.rb, line 38
        def create_table(table_name, key_schema, provisioned_throughput)
          body = {
            'KeySchema'             => key_schema,
            'ProvisionedThroughput' => provisioned_throughput,
            'TableName'             => table_name
          }

          request(
            :body       => MultiJson.encode(body),
            :headers    => {'x-amz-target' => 'DynamoDB_20111205.CreateTable'},
            :idempotent => true
          )
        end