LambdaFunctionFailedEventAttributes.fromJson constructor

LambdaFunctionFailedEventAttributes.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory LambdaFunctionFailedEventAttributes.fromJson(
    Map<String, dynamic> json) {
  return LambdaFunctionFailedEventAttributes(
    scheduledEventId: json['scheduledEventId'] as int,
    startedEventId: json['startedEventId'] as int,
    details: json['details'] as String?,
    reason: json['reason'] as String?,
  );
}