interface VPCFlowLogParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ObservabilityAdmin.CfnOrganizationTelemetryRulePropsMixin.VPCFlowLogParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsobservabilityadmin#CfnOrganizationTelemetryRulePropsMixin_VPCFlowLogParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.observabilityadmin.CfnOrganizationTelemetryRulePropsMixin.VPCFlowLogParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_observabilityadmin.CfnOrganizationTelemetryRulePropsMixin.VPCFlowLogParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_observabilityadmin » CfnOrganizationTelemetryRulePropsMixin » VPCFlowLogParametersProperty |
Configuration parameters specific to VPC Flow Logs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_observabilityadmin as observabilityadmin } from '@aws-cdk/cfn-property-mixins';
const vPCFlowLogParametersProperty: observabilityadmin.CfnOrganizationTelemetryRulePropsMixin.VPCFlowLogParametersProperty = {
logFormat: 'logFormat',
maxAggregationInterval: 123,
trafficType: 'trafficType',
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string | The format in which VPC Flow Log entries should be logged. |
| max | number | The maximum interval in seconds between the capture of flow log records. |
| traffic | string | The type of traffic to log (ACCEPT, REJECT, or ALL). |
logFormat?
Type:
string
(optional)
The format in which VPC Flow Log entries should be logged.
maxAggregationInterval?
Type:
number
(optional)
The maximum interval in seconds between the capture of flow log records.
trafficType?
Type:
string
(optional)
The type of traffic to log (ACCEPT, REJECT, or ALL).

.NET
Go
Java
Python
TypeScript