Interface IDestinationOptions
Options for writing logs to a destination.
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDestinationOptions : IS3DestinationOptions
Syntax (vb)
Public Interface IDestinationOptions Inherits IS3DestinationOptions
Remarks
TODO: there are other destination options, currently they are only for s3 destinations (not sure if that will change)
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var destinationOptions = new DestinationOptions {
FileFormat = FlowLogFileFormat.PLAIN_TEXT,
HiveCompatiblePartitions = false,
PerHourPartition = false
};