GetPlanRuleCopyActionLifecycle.fromMap constructor

GetPlanRuleCopyActionLifecycle.fromMap(
  1. Map<String, dynamic> map
)

Implementation

factory GetPlanRuleCopyActionLifecycle.fromMap(Map<String, dynamic> map) {
  return GetPlanRuleCopyActionLifecycle(
    coldStorageAfter: pulumi.Input.fromValue((map['coldStorageAfter'] as num).toInt()),
    deleteAfter: pulumi.Input.fromValue((map['deleteAfter'] as num).toInt()),
    optInToArchiveForSupportedResources: pulumi.Input.fromValue(map['optInToArchiveForSupportedResources'] as bool),
  );
}