FlowDefinitionOutputConfig constructor

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

Creates a new FlowDefinitionOutputConfig. kmsKeyId KMS key ARN for server-side encryption. s3OutputPath The Amazon S3 path where the object containing human output will be made available.

Implementation

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