DescribeTransformJobResponse constructor
      
      DescribeTransformJobResponse({ 
    
    
- required DateTime creationTime,
- required String modelName,
- required TransformInput transformInput,
- required String transformJobArn,
- required String transformJobName,
- required TransformJobStatus transformJobStatus,
- required TransformResources transformResources,
- String? autoMLJobArn,
- BatchStrategy? batchStrategy,
- DataProcessing? dataProcessing,
- Map<String, String> ? environment,
- ExperimentConfig? experimentConfig,
- String? failureReason,
- String? labelingJobArn,
- int? maxConcurrentTransforms,
- int? maxPayloadInMB,
- ModelClientConfig? modelClientConfig,
- DateTime? transformEndTime,
- TransformOutput? transformOutput,
- DateTime? transformStartTime,
Implementation
DescribeTransformJobResponse({
  required this.creationTime,
  required this.modelName,
  required this.transformInput,
  required this.transformJobArn,
  required this.transformJobName,
  required this.transformJobStatus,
  required this.transformResources,
  this.autoMLJobArn,
  this.batchStrategy,
  this.dataProcessing,
  this.environment,
  this.experimentConfig,
  this.failureReason,
  this.labelingJobArn,
  this.maxConcurrentTransforms,
  this.maxPayloadInMB,
  this.modelClientConfig,
  this.transformEndTime,
  this.transformOutput,
  this.transformStartTime,
});