StepFunctionsAction.fromJson constructor

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

Implementation

factory StepFunctionsAction.fromJson(Map<String, dynamic> json) {
  return StepFunctionsAction(
    roleArn: json['roleArn'] as String,
    stateMachineName: json['stateMachineName'] as String,
    executionNamePrefix: json['executionNamePrefix'] as String?,
  );
}