Show / Hide Table of Contents

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 CfnFlowLog.IDestinationOptionsProperty
Syntax (vb)
Public Interface CfnFlowLog.IDestinationOptionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-flowlog-destinationoptions.html

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

FileFormat

The format for the flow log.

HiveCompatiblePartitions

Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3.

PerHourPartition

Indicates whether to partition the flow log per hour.

Properties

FileFormat

The format for the flow log.

string FileFormat { get; }
Property Value

string

Remarks

The default is plain-text .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-flowlog-destinationoptions.html#cfn-ec2-flowlog-destinationoptions-fileformat

HiveCompatiblePartitions

Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3.

object HiveCompatiblePartitions { get; }
Property Value

object

Remarks

The default is false .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-flowlog-destinationoptions.html#cfn-ec2-flowlog-destinationoptions-hivecompatiblepartitions

PerHourPartition

Indicates whether to partition the flow log per hour.

object PerHourPartition { get; }
Property Value

object

Remarks

This reduces the cost and response time for queries. The default is false .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-flowlog-destinationoptions.html#cfn-ec2-flowlog-destinationoptions-perhourpartition

Back to top Generated by DocFX