BackupRuleInput constructor

BackupRuleInput({
  1. required String ruleName,
  2. required String targetBackupVaultName,
  3. int? completionWindowMinutes,
  4. List<CopyAction>? copyActions,
  5. Lifecycle? lifecycle,
  6. Map<String, String>? recoveryPointTags,
  7. String? scheduleExpression,
  8. int? startWindowMinutes,
})

Implementation

BackupRuleInput({
  required this.ruleName,
  required this.targetBackupVaultName,
  this.completionWindowMinutes,
  this.copyActions,
  this.lifecycle,
  this.recoveryPointTags,
  this.scheduleExpression,
  this.startWindowMinutes,
});