PatchRetentionRule constructor

PatchRetentionRule({
  1. PatchRetentionRuleTypeEnum? type = const PatchRetentionRuleTypeEnum._('expire'),
  2. int? everySeconds,
  3. int? shardGroupDurationSeconds,
})

Returns a new PatchRetentionRule instance.

Implementation

PatchRetentionRule({
  this.type = const PatchRetentionRuleTypeEnum._('expire'),
  this.everySeconds,
  this.shardGroupDurationSeconds,
});