toMap method
Implementation
Map<String, dynamic> toMap() {
return <String, dynamic>{
'completionWindow': ?completionWindow,
'copyActions': ?pulumi.Input.mapOptionalInputValue<List<PlanRuleCopyAction>, List<Map<String, dynamic>>>(copyActions, (value) => pulumi.Input.encodeList<PlanRuleCopyAction, Map<String, dynamic>>(value, (value) => value.toMap())),
'enableContinuousBackup': ?enableContinuousBackup,
'lifecycle': ?pulumi.Input.mapOptionalInputValue<PlanRuleLifecycle, Map<String, dynamic>>(lifecycle, (value) => value.toMap()),
'recoveryPointTags': ?recoveryPointTags,
'ruleName': ruleName,
'scanActions': ?pulumi.Input.mapOptionalInputValue<List<PlanRuleScanAction>, List<Map<String, dynamic>>>(scanActions, (value) => pulumi.Input.encodeList<PlanRuleScanAction, Map<String, dynamic>>(value, (value) => value.toMap())),
'schedule': ?schedule,
'scheduleExpressionTimezone': ?scheduleExpressionTimezone,
'startWindow': ?startWindow,
'targetLogicallyAirGappedBackupVaultArn': ?targetLogicallyAirGappedBackupVaultArn,
'targetVaultName': targetVaultName,
};
}