Einzelheiten zur API finden SieListTablesin derAWS SDK für .NET API-Referenz. Eine vollständige Liste der AWS SDK-Entwicklerhandbücher und Codebeispiele finden Sie unterDynamoDB mit einem SDK verwenden AWS.
If the number of global tables DynamoDB finds reaches this limit, it stops the operation and returns the table names collected up to that point, with a table name in the LastEvaluatedGlobalTableName to apply in a subsequent operation to the ExclusiveStartGlobalTableName parameter. Type: Integer...
Paws::DynamoDB::ListTablesOutput ATTRIBUTES LastEvaluatedTableName => Str The name of the last table in the current page of results. Use this value as theExclusiveStartTableNamein a new request to obtain the next page of results, until all the table names are returned. ...
AWSCredentialsProvideraWSCredentialsProvider=newSystemPropertiesCredentialsProvider();//substitute the above line for any valid *Provider implementationAmazonDynamoDBClientamazonDynamoDBClient=newAmazonDynamoDBClient(aWSCredentialsProvider);//the above line is now passing an instance of AWSCredentialsProvider//as oppo...
方法名:listTables AmazonDynamoDB.listTables介绍 [英]Simplified method form for invoking the ListTables operation.[中]用于调用ListTables操作的简化方法表单。 代码示例 代码示例来源:origin: aws/aws-sdk-java @Override public Page<Table,ListTablesResult> nextPage() { if (lastEvaluatedKey == null) {...
privatestaticasyncTaskListMyTables(){Console.WriteLine("\n*** Listing tables ***");stringlastTableNameEvaluated =null;do{varresponse =awaitClient.ListTablesAsync(newListTablesRequest{Limit =2, ExclusiveStartTableName = lastTableNameEvaluated });foreach(varnameinresponse.TableNames){Console.Writ...