InsightFiltersResourceAwsIamAccessKeyCreatedAtDateRange.fromMap constructor

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

Implementation

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