AwsLambdaFunctionDeadLetterConfig.fromJson constructor

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

Implementation

factory AwsLambdaFunctionDeadLetterConfig.fromJson(
    Map<String, dynamic> json) {
  return AwsLambdaFunctionDeadLetterConfig(
    targetArn: json['TargetArn'] as String?,
  );
}