SamplingRule constructor

SamplingRule({
  1. required double fixedRate,
  2. required String hTTPMethod,
  3. required String host,
  4. required int priority,
  5. required int reservoirSize,
  6. required String resourceARN,
  7. required String serviceName,
  8. required String serviceType,
  9. required String uRLPath,
  10. required int version,
  11. Map<String, String>? attributes,
  12. String? ruleARN,
  13. String? ruleName,
})

Implementation

SamplingRule({
  required this.fixedRate,
  required this.hTTPMethod,
  required this.host,
  required this.priority,
  required this.reservoirSize,
  required this.resourceARN,
  required this.serviceName,
  required this.serviceType,
  required this.uRLPath,
  required this.version,
  this.attributes,
  this.ruleARN,
  this.ruleName,
});