Interface DestinationOptions

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

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-12T19:34:00.861Z") @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();