AlgorithmArgs constructor

const AlgorithmArgs({
  1. Input<String?>? algorithmDescription,
  2. required Input<String> algorithmName,
  3. Input<bool?>? certifyForMarketplace,
  4. Input<AlgorithmInferenceSpecification?>? inferenceSpecification,
  5. Input<String?>? region,
  6. Input<Map<String, String>?>? tags,
  7. Input<AlgorithmTimeouts?>? timeouts,
  8. required Input<AlgorithmTrainingSpecification> trainingSpecification,
  9. Input<AlgorithmValidationSpecification?>? validationSpecification,
})

Creates a new AlgorithmArgs. algorithmDescription Description of the algorithm. algorithmName Name of the algorithm. certifyForMarketplace Whether to certify the algorithm for AWS Marketplace. inferenceSpecification Configuration for inference jobs that use this algorithm. See Inference Specification. region Region where this resource is managed. Defaults to the Region set in the provider configuration. tags Map of tags to assign to the resource. timeouts Optional. trainingSpecification Configuration for training jobs that use this algorithm. See Training Specification. validationSpecification Configuration used to validate the algorithm. See Validation Specification.

Implementation

const AlgorithmArgs({
  this.algorithmDescription,
  required this.algorithmName,
  this.certifyForMarketplace,
  this.inferenceSpecification,
  this.region,
  this.tags,
  this.timeouts,
  required this.trainingSpecification,
  this.validationSpecification,
});