LambdaFunctionTimedOutEventAttributes.fromJson constructor

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

Implementation

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