Interface CfnFlowLog.IDestinationOptionsProperty
Describes the destination options for a flow log.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDestinationOptionsProperty
Syntax (vb)
Public Interface IDestinationOptionsProperty
Remarks
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 destinationOptionsProperty = new DestinationOptionsProperty {
FileFormat = "fileFormat",
HiveCompatiblePartitions = false,
PerHourPartition = false
};
Synopsis
Properties
File |
The format for the flow log. |
Hive |
Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3. |
Per |
Indicates whether to partition the flow log per hour. |
Properties
FileFormat
The format for the flow log.
string FileFormat { get; }
Property Value
System.
Remarks
HiveCompatiblePartitions
Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3.
object HiveCompatiblePartitions { get; }
Property Value
System.
Remarks
PerHourPartition
Indicates whether to partition the flow log per hour.
object PerHourPartition { get; }
Property Value
System.
Remarks
This reduces the cost and response time for queries. The default is false
.