Interface DestinationOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, S3DestinationOptions
All Known Implementing Classes:
DestinationOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-12-27T17:02:00.875Z") @Stability(Stable) public interface DestinationOptions extends software.amazon.jsii.JsiiSerializable, S3DestinationOptions
Options for writing logs to a destination.

TODO: there are other destination options, currently they are only for s3 destinations (not sure if that will change)

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ec2.*;
 DestinationOptions destinationOptions = DestinationOptions.builder()
         .fileFormat(FlowLogFileFormat.PLAIN_TEXT)
         .hiveCompatiblePartitions(false)
         .perHourPartition(false)
         .build();