AwsRedshiftClusterHsmStatus.fromJson constructor

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

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?,
  );
}