AwsRedshiftClusterResizeInfo.fromJson constructor

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

Implementation

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