AwsRedshiftClusterClusterParameterStatus.fromJson constructor

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

Implementation

factory AwsRedshiftClusterClusterParameterStatus.fromJson(
    Map<String, dynamic> json) {
  return AwsRedshiftClusterClusterParameterStatus(
    parameterApplyErrorDescription:
        json['ParameterApplyErrorDescription'] as String?,
    parameterApplyStatus: json['ParameterApplyStatus'] as String?,
    parameterName: json['ParameterName'] as String?,
  );
}