DescribeHumanLoopResponse constructor

DescribeHumanLoopResponse({
  1. required DateTime creationTime,
  2. required String flowDefinitionArn,
  3. required String humanLoopArn,
  4. required String humanLoopName,
  5. required HumanLoopStatus humanLoopStatus,
  6. String? failureCode,
  7. String? failureReason,
  8. HumanLoopOutput? humanLoopOutput,
})

Implementation

DescribeHumanLoopResponse({
  required this.creationTime,
  required this.flowDefinitionArn,
  required this.humanLoopArn,
  required this.humanLoopName,
  required this.humanLoopStatus,
  this.failureCode,
  this.failureReason,
  this.humanLoopOutput,
});