PerformanceLimits constructor

PerformanceLimits({
  1. String? maxIops,
  2. String? maxReadIops,
  3. String? maxReadThroughputBps,
  4. String? maxWriteIops,
  5. String? maxWriteThroughputBps,
})

Implementation

PerformanceLimits({
  this.maxIops,
  this.maxReadIops,
  this.maxReadThroughputBps,
  this.maxWriteIops,
  this.maxWriteThroughputBps,
});