AlgorithmTrainingSpecificationTrainingChannel constructor

const AlgorithmTrainingSpecificationTrainingChannel({
  1. Input<String?>? description,
  2. Input<bool?>? isRequired,
  3. required Input<String> name,
  4. Input<List<String>?>? supportedCompressionTypes,
  5. required Input<List<String>> supportedContentTypes,
  6. required Input<List<String>> supportedInputModes,
})

Creates a new AlgorithmTrainingSpecificationTrainingChannel. description Description of the channel. isRequired Whether the channel is required. name Channel name. supportedCompressionTypes Supported compression types. Allowed values are: None and Gzip. supportedContentTypes Supported input content types. supportedInputModes Supported training input modes.

Implementation

const AlgorithmTrainingSpecificationTrainingChannel({
  this.description,
  this.isRequired,
  required this.name,
  this.supportedCompressionTypes,
  required this.supportedContentTypes,
  required this.supportedInputModes,
});