AlgorithmInferenceSpecificationContainerAdditionalS3DataSource constructor

const AlgorithmInferenceSpecificationContainerAdditionalS3DataSource({
  1. Input<String?>? compressionType,
  2. Input<String?>? etag,
  3. required Input<String> s3DataType,
  4. required Input<String> s3Uri,
})

Creates a new AlgorithmInferenceSpecificationContainerAdditionalS3DataSource. compressionType Compression type for the data. Allowed values are: None and Gzip. etag ETag of the S3 object. s3DataType Type of additional S3 data. s3Uri S3 or HTTPS URI for the additional data.

Implementation

const AlgorithmInferenceSpecificationContainerAdditionalS3DataSource({
  this.compressionType,
  this.etag,
  required this.s3DataType,
  required this.s3Uri,
});