RunJobFlowOutput.fromJson constructor

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

Implementation

factory RunJobFlowOutput.fromJson(Map<String, dynamic> json) {
  return RunJobFlowOutput(
    clusterArn: json['ClusterArn'] as String?,
    jobFlowId: json['JobFlowId'] as String?,
  );
}