toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return <String, dynamic>{
    'completionWindow': completionWindow,
    'copyActions': pulumi.Input.mapInputValue<List<GetPlanRuleCopyAction>, List<Map<String, dynamic>>>(copyActions, (value) => pulumi.Input.encodeList<GetPlanRuleCopyAction, Map<String, dynamic>>(value, (value) => value.toMap())),
    'enableContinuousBackup': enableContinuousBackup,
    'lifecycles': pulumi.Input.mapInputValue<List<GetPlanRuleLifecycle>, List<Map<String, dynamic>>>(lifecycles, (value) => pulumi.Input.encodeList<GetPlanRuleLifecycle, Map<String, dynamic>>(value, (value) => value.toMap())),
    'recoveryPointTags': ?recoveryPointTags,
    'ruleName': ruleName,
    'scanActions': pulumi.Input.mapInputValue<List<GetPlanRuleScanAction>, List<Map<String, dynamic>>>(scanActions, (value) => pulumi.Input.encodeList<GetPlanRuleScanAction, Map<String, dynamic>>(value, (value) => value.toMap())),
    'schedule': schedule,
    'scheduleExpressionTimezone': scheduleExpressionTimezone,
    'startWindow': startWindow,
    'targetLogicallyAirGappedBackupVaultArn': targetLogicallyAirGappedBackupVaultArn,
    'targetVaultName': targetVaultName,
  };
}