TrainingJobDebugRuleConfiguration constructor

const TrainingJobDebugRuleConfiguration({
  1. Input<String?>? instanceType,
  2. Input<String?>? localPath,
  3. required Input<String> ruleConfigurationName,
  4. required Input<String> ruleEvaluatorImage,
  5. Input<Map<String, String>?>? ruleParameters,
  6. Input<String?>? s3OutputPath,
  7. Input<int?>? volumeSizeInGb,
})

Creates a new TrainingJobDebugRuleConfiguration. instanceType Instance type to deploy for the debug rule evaluation. Valid values are SageMaker AI processing instance types. localPath Local path where debug rule output is written. ruleConfigurationName Name of the rule configuration. Must be between 1 and 256 characters. ruleEvaluatorImage Docker image URI for the rule evaluator. ruleParameters Map of parameters for the rule configuration. Maximum of 100 entries. s3OutputPath S3 URI where rule output is stored. volumeSizeInGb Size of the storage volume for the rule evaluator, in GB.

Implementation

const TrainingJobDebugRuleConfiguration({
  this.instanceType,
  this.localPath,
  required this.ruleConfigurationName,
  required this.ruleEvaluatorImage,
  this.ruleParameters,
  this.s3OutputPath,
  this.volumeSizeInGb,
});