Show / Hide Table of Contents

Class FlowLogOptions

Options to add a flow log to a VPC.

Inheritance
object
FlowLogOptions
Implements
IFlowLogOptions
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FlowLogOptions : IFlowLogOptions
Syntax (vb)
Public Class FlowLogOptions Implements IFlowLogOptions
Remarks

ExampleMetadata: infused

Examples
var vpc = new Vpc(this, "Vpc");

            vpc.AddFlowLog("FlowLogS3", new FlowLogOptions {
                Destination = FlowLogDestination.ToS3()
            });

            // Only reject traffic and interval every minute.
            vpc.AddFlowLog("FlowLogCloudWatch", new FlowLogOptions {
                TrafficType = FlowLogTrafficType.REJECT,
                MaxAggregationInterval = FlowLogMaxAggregationInterval.ONE_MINUTE
            });

Synopsis

Constructors

FlowLogOptions()

Options to add a flow log to a VPC.

Properties

Destination

Specifies the type of destination to which the flow log data is to be published.

LogFormat

The fields to include in the flow log record, in the order in which they should appear.

MaxAggregationInterval

The maximum interval of time during which a flow of packets is captured and aggregated into a flow log record.

TrafficType

The type of traffic to log.

Constructors

FlowLogOptions()

Options to add a flow log to a VPC.

public FlowLogOptions()
Remarks

ExampleMetadata: infused

Examples
var vpc = new Vpc(this, "Vpc");

            vpc.AddFlowLog("FlowLogS3", new FlowLogOptions {
                Destination = FlowLogDestination.ToS3()
            });

            // Only reject traffic and interval every minute.
            vpc.AddFlowLog("FlowLogCloudWatch", new FlowLogOptions {
                TrafficType = FlowLogTrafficType.REJECT,
                MaxAggregationInterval = FlowLogMaxAggregationInterval.ONE_MINUTE
            });

Properties

Destination

Specifies the type of destination to which the flow log data is to be published.

public FlowLogDestination? Destination { get; set; }
Property Value

FlowLogDestination

Remarks

Flow log data can be published to CloudWatch Logs or Amazon S3

Default: FlowLogDestinationType.toCloudWatchLogs()

LogFormat

The fields to include in the flow log record, in the order in which they should appear.

public LogFormat[]? LogFormat { get; set; }
Property Value

LogFormat[]

Remarks

If multiple fields are specified, they will be separated by spaces. For full control over the literal log format string, pass a single field constructed with LogFormat.custom().

See https://docs.aws.amazon.com/vpc/latest/userguide/flow-logs.html#flow-log-records

Default: - default log format is used.

MaxAggregationInterval

The maximum interval of time during which a flow of packets is captured and aggregated into a flow log record.

public FlowLogMaxAggregationInterval? MaxAggregationInterval { get; set; }
Property Value

FlowLogMaxAggregationInterval?

Remarks

When creating flow logs for a Transit Gateway or Transit Gateway Attachment, this property must be ONE_MINUTES.

Default: - FlowLogMaxAggregationInterval.ONE_MINUTES if creating flow logs for Transit Gateway, otherwise FlowLogMaxAggregationInterval.TEN_MINUTES.

See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-flowlog.html#cfn-ec2-flowlog-maxaggregationinterval

TrafficType

The type of traffic to log.

public FlowLogTrafficType? TrafficType { get; set; }
Property Value

FlowLogTrafficType?

Remarks

You can log traffic that the resource accepts or rejects, or all traffic. When the target is either TransitGateway or TransitGatewayAttachment, setting the traffic type is not possible.

Default: ALL

See: https://docs.aws.amazon.com/vpc/latest/tgw/working-with-flow-logs.html

Implements

IFlowLogOptions
Back to top Generated by DocFX