AwsRedshiftClusterHsmStatus.fromJson constructor
Implementation
factory AwsRedshiftClusterHsmStatus.fromJson(Map<String, dynamic> json) {
return AwsRedshiftClusterHsmStatus(
hsmClientCertificateIdentifier:
json['HsmClientCertificateIdentifier'] as String?,
hsmConfigurationIdentifier: json['HsmConfigurationIdentifier'] as String?,
status: json['Status'] as String?,
);
}