DeleteSourceCredentialsOutput.fromJson constructor

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

Implementation

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