Amazon.DynamoDBv2.AmazonDynamoDBClient.CreateTableAsync C# (CSharp) Method

CreateTableAsync() public method

Initiates the asynchronous execution of the CreateTable operation.
public CreateTableAsync ( CreateTableRequest request, System cancellationToken = default(CancellationToken) ) : Task
request Amazon.DynamoDBv2.Model.CreateTableRequest Container for the necessary parameters to execute the CreateTable operation.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
return Task
        public Task<CreateTableResponse> CreateTableAsync(CreateTableRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new CreateTableRequestMarshaller();
            var unmarshaller = CreateTableResponseUnmarshaller.Instance;

            return InvokeAsync<CreateTableRequest,CreateTableResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }

Same methods

AmazonDynamoDBClient::CreateTableAsync ( string tableName, List keySchema, List attributeDefinitions, ProvisionedThroughput provisionedThroughput, System cancellationToken = default(CancellationToken) ) : Task