AwsRedshiftClusterClusterParameterGroup.fromJson constructor

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

Implementation

factory AwsRedshiftClusterClusterParameterGroup.fromJson(
    Map<String, dynamic> json) {
  return AwsRedshiftClusterClusterParameterGroup(
    clusterParameterStatusList: (json['ClusterParameterStatusList'] as List?)
        ?.whereNotNull()
        .map((e) => AwsRedshiftClusterClusterParameterStatus.fromJson(
            e as Map<String, dynamic>))
        .toList(),
    parameterApplyStatus: json['ParameterApplyStatus'] as String?,
    parameterGroupName: json['ParameterGroupName'] as String?,
  );
}