BatchUpdateFindingsUnprocessedFinding.fromJson constructor
Implementation
factory BatchUpdateFindingsUnprocessedFinding.fromJson(
Map<String, dynamic> json) {
return BatchUpdateFindingsUnprocessedFinding(
errorCode: json['ErrorCode'] as String,
errorMessage: json['ErrorMessage'] as String,
findingIdentifier: AwsSecurityFindingIdentifier.fromJson(
json['FindingIdentifier'] as Map<String, dynamic>),
);
}