LabelingJobOutputConfig constructor

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

Creates a new LabelingJobOutputConfig. kmsKeyId ID of the key used to encrypt the output data. s3OutputPath S3 location to write output data. snsTopicArn SNS output topic ARN.

Implementation

const LabelingJobOutputConfig({
  this.kmsKeyId,
  required this.s3OutputPath,
  this.snsTopicArn,
});