SessionLoggerLogConfigurationS3 constructor

const SessionLoggerLogConfigurationS3({
  1. required Input<String> bucket,
  2. Input<String?>? bucketOwner,
  3. required Input<String> folderStructure,
  4. Input<String?>? keyPrefix,
  5. required Input<String> logFileFormat,
})

Creates a new SessionLoggerLogConfigurationS3. bucket S3 bucket name where logs are delivered. bucketOwner Expected bucket owner of the target S3 bucket. folderStructure Folder structure that defines the organizational structure for log files in S3. Valid values: FlatStructure, DateBasedStructure. keyPrefix S3 path prefix that determines where log files are stored. logFileFormat Format of the log file written to S3. Valid values: Json, Parquet.

Implementation

const SessionLoggerLogConfigurationS3({
  required this.bucket,
  this.bucketOwner,
  required this.folderStructure,
  this.keyPrefix,
  required this.logFileFormat,
});