AutomationRuleCriteriaFirstObservedAtDateRange.fromMap constructor
Implementation
factory AutomationRuleCriteriaFirstObservedAtDateRange.fromMap(Map<String, dynamic> map) {
return AutomationRuleCriteriaFirstObservedAtDateRange(
unit: pulumi.Input.fromValue(map['unit'] as String),
value: pulumi.Input.fromValue((map['value'] as num).toInt()),
);
}