Backend constructor

Backend({
  1. String? balancingMode,
  2. double? capacityScaler,
  3. List<BackendCustomMetric>? customMetrics,
  4. String? description,
  5. bool? failover,
  6. String? group,
  7. int? maxConnections,
  8. int? maxConnectionsPerEndpoint,
  9. int? maxConnectionsPerInstance,
  10. int? maxRate,
  11. double? maxRatePerEndpoint,
  12. double? maxRatePerInstance,
  13. double? maxUtilization,
  14. String? preference,
})

Implementation

Backend({
  this.balancingMode,
  this.capacityScaler,
  this.customMetrics,
  this.description,
  this.failover,
  this.group,
  this.maxConnections,
  this.maxConnectionsPerEndpoint,
  this.maxConnectionsPerInstance,
  this.maxRate,
  this.maxRatePerEndpoint,
  this.maxRatePerInstance,
  this.maxUtilization,
  this.preference,
});