DeviceFleetOutputConfig constructor

const DeviceFleetOutputConfig({
  1. Input<String?>? kmsKeyId,
  2. required Input<String> s3OutputLocation,
})

Creates a new DeviceFleetOutputConfig. kmsKeyId KMS key that Amazon SageMaker AI uses to encrypt data on the storage volume after compilation job. If you don't provide a KMS key ID, Amazon SageMaker AI uses the default KMS key for Amazon S3 for your role's account. s3OutputLocation The Amazon Simple Storage (S3) bucker URI.

Implementation

const DeviceFleetOutputConfig({
  this.kmsKeyId,
  required this.s3OutputLocation,
});