FlowDefinitionHumanLoopActivationConfig.fromMap constructor

FlowDefinitionHumanLoopActivationConfig.fromMap(
  1. Map<String, dynamic> map
)

Implementation

factory FlowDefinitionHumanLoopActivationConfig.fromMap(Map<String, dynamic> map) {
  return FlowDefinitionHumanLoopActivationConfig(
    humanLoopActivationConditionsConfig: (() { final guardedValue = map['humanLoopActivationConditionsConfig']; if (guardedValue == null) return null; return pulumi.Input.fromValue(FlowDefinitionHumanLoopActivationConfigHumanLoopActivationConditionsConfig.fromMap((guardedValue as Map).cast<String, dynamic>())); })(),
  );
}