ModifyClusterOutput.fromJson constructor

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

Implementation

factory ModifyClusterOutput.fromJson(Map<String, dynamic> json) {
  return ModifyClusterOutput(
    stepConcurrencyLevel: json['StepConcurrencyLevel'] as int?,
  );
}