FlowLogDestinationOptions constructor

const FlowLogDestinationOptions({
  1. Input<String?>? fileFormat,
  2. Input<bool?>? hiveCompatiblePartitions,
  3. Input<bool?>? perHourPartition,
})

Creates a new FlowLogDestinationOptions. fileFormat File format for the flow log. Default value: plain-text. Valid values: plain-text, parquet. hiveCompatiblePartitions Whether to use Hive-compatible prefixes for flow logs stored in Amazon S3. Default value: false. perHourPartition Whether to partition the flow log per hour. This reduces the cost and response time for queries. Default value: false.

Implementation

const FlowLogDestinationOptions({
  this.fileFormat,
  this.hiveCompatiblePartitions,
  this.perHourPartition,
});