AlgorithmValidationSpecificationValidationProfilesTrainingJobDefinitionInputDataConfig constructor

const AlgorithmValidationSpecificationValidationProfilesTrainingJobDefinitionInputDataConfig({
  1. required Input<String> channelName,
  2. Input<String?>? compressionType,
  3. Input<String?>? contentType,
  4. required Input<AlgorithmValidationSpecificationValidationProfilesTrainingJobDefinitionInputDataConfigDataSource> dataSource,
  5. Input<String?>? inputMode,
  6. Input<String?>? recordWrapperType,
  7. Input<AlgorithmValidationSpecificationValidationProfilesTrainingJobDefinitionInputDataConfigShuffleConfig?>? shuffleConfig,
})

Creates a new AlgorithmValidationSpecificationValidationProfilesTrainingJobDefinitionInputDataConfig. channelName Name of the channel. compressionType Compression type of the input data. Allowed values are: None and Gzip. contentType MIME type of the input data. dataSource Source of the input data. See Data Source. inputMode Training input mode for the channel. Allowed values are: Pipe, File, and FastFile. recordWrapperType Record wrapper type. Allowed values are: None and RecordIO. shuffleConfig Shuffle configuration for the channel. See Shuffle Config.

Implementation

const AlgorithmValidationSpecificationValidationProfilesTrainingJobDefinitionInputDataConfig({
  required this.channelName,
  this.compressionType,
  this.contentType,
  required this.dataSource,
  this.inputMode,
  this.recordWrapperType,
  this.shuffleConfig,
});