TrainingJobOutputDataConfig constructor

const TrainingJobOutputDataConfig({
  1. Input<String?>? compressionType,
  2. Input<String?>? kmsKeyId,
  3. required Input<String> s3OutputPath,
})

Creates a new TrainingJobOutputDataConfig. compressionType Output compression type. Valid values: GZIP, NONE. kmsKeyId KMS key ID used to encrypt the output data. s3OutputPath S3 URI where output data is stored.

Implementation

const TrainingJobOutputDataConfig({
  this.compressionType,
  this.kmsKeyId,
  required this.s3OutputPath,
});