AwsRedshiftClusterResizeInfo.fromJson constructor
Implementation
factory AwsRedshiftClusterResizeInfo.fromJson(Map<String, dynamic> json) {
return AwsRedshiftClusterResizeInfo(
allowCancelResize: json['AllowCancelResize'] as bool?,
resizeType: json['ResizeType'] as String?,
);
}