NodegroupScalingConfig.fromJson constructor

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

Implementation

factory NodegroupScalingConfig.fromJson(Map<String, dynamic> json) {
  return NodegroupScalingConfig(
    desiredSize: json['desiredSize'] as int?,
    maxSize: json['maxSize'] as int?,
    minSize: json['minSize'] as int?,
  );
}