interface VPCFlowLogParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ObservabilityAdmin.Mixins.CfnOrganizationTelemetryRulePropsMixin.VPCFlowLogParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsobservabilityadmin/mixins#CfnOrganizationTelemetryRulePropsMixin_VPCFlowLogParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.CfnOrganizationTelemetryRulePropsMixin.VPCFlowLogParametersProperty |
Python | aws_cdk.mixins_preview.aws_observabilityadmin.mixins.CfnOrganizationTelemetryRulePropsMixin.VPCFlowLogParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_observabilityadmin » mixins » 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 { mixins as observabilityadmin_mixins } from '@aws-cdk/mixins-preview/aws-observabilityadmin';
const vPCFlowLogParametersProperty: observabilityadmin_mixins.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