TableDescription constructor

TableDescription({
  1. DateTime? creationDateTime,
  2. int? itemCount,
  3. KeySchema? keySchema,
  4. ProvisionedThroughputDescription? provisionedThroughput,
  5. String? tableName,
  6. int? tableSizeBytes,
  7. TableStatus? tableStatus,
})

Implementation

TableDescription({
  this.creationDateTime,
  this.itemCount,
  this.keySchema,
  this.provisionedThroughput,
  this.tableName,
  this.tableSizeBytes,
  this.tableStatus,
});