StopPipelineExecutionResponse.fromJson constructor

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

Implementation

factory StopPipelineExecutionResponse.fromJson(Map<String, dynamic> json) {
  return StopPipelineExecutionResponse(
    pipelineExecutionArn: json['PipelineExecutionArn'] as String?,
  );
}