ScheduledQueryRecentlyFailedRunErrorReportLocation.fromMap constructor
ScheduledQueryRecentlyFailedRunErrorReportLocation.fromMap(
- Map<String, dynamic> map
)
Implementation
factory ScheduledQueryRecentlyFailedRunErrorReportLocation.fromMap(Map<String, dynamic> map) {
return ScheduledQueryRecentlyFailedRunErrorReportLocation(
s3ReportLocations: (() { final guardedValue = map['s3ReportLocations']; if (guardedValue == null) return null; return pulumi.Input.fromValue(pulumi.Input.decodeList<ScheduledQueryRecentlyFailedRunErrorReportLocationS3ReportLocation>(guardedValue, (value) => ScheduledQueryRecentlyFailedRunErrorReportLocationS3ReportLocation.fromMap((value as Map).cast<String, dynamic>()))); })(),
);
}