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